Changeset 1821
- Timestamp:
 - Oct 10, 2008, 10:26:42 PM (17 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/src/kmk/read.c (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/kmk/read.c
r1817 r1821 2427 2427 if (f->cmds != 0) 2428 2428 { 2429 #ifndef KMK /* bugfix: Don't chop the chain! */ 2429 2430 this->next = *d_ptr; 2430 2431 *d_ptr = this; 2432 #else /* KMK */ 2433 struct dep *this_last = this; 2434 while (this_last->next) 2435 this_last = this_last->next; 2436 this_last->next = *d_ptr; 2437 *d_ptr = this; 2438 #endif /* KMK */ 2431 2439 } 2432 2440 else  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  