- Timestamp:
- May 26, 2007 8:09:15 PM (18 years ago)
- Location:
- trunk/src/gmakenew
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmakenew/function.c
r925 r940 2165 2165 { 2166 2166 /* Expand the argument. */ 2167 c har *p = argv[0];2167 const char *p = argv[0]; 2168 2168 char *cwd = argv[1]; 2169 2169 unsigned int cwd_len = ~0U; … … 2326 2326 { 2327 2327 unsigned int len; 2328 c har *iterator = (char *)args;2328 const char *iterator = args; 2329 2329 const char *end = args; 2330 2330 const char *cur; … … 2681 2681 { 2682 2682 unsigned int len; 2683 c har *iterator = stack_var->value;2683 const char *iterator = stack_var->value; 2684 2684 char *lastitem = NULL; 2685 2685 char *cur; -
trunk/src/gmakenew/main.c
r938 r940 1590 1590 && stat ("makefile.kmk", &st) < 0) 1591 1591 { 1592 static char 1593 static c har *fake_list[2] = { &fake_path[0], NULL };1592 static char fake_path[3*16 + 32] = ".."; 1593 static const char *fake_list[2] = { &fake_path[0], NULL }; 1594 1594 struct stringlist fake_directories = { &fake_list[0], 1, 0 }; 1595 1595 -
trunk/src/gmakenew/read.c
r937 r940 3392 3392 } 3393 3393 #if defined(KMK) || defined(__EMX__) /* speed optimization */ 3394 if (gl.gl_pathv != &gname)3394 if (gl.gl_pathv != (char **)&gname) 3395 3395 #endif 3396 3396 globfree (&gl);
Note:
See TracChangeset
for help on using the changeset viewer.