[BACK]Return to varmodifiers.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/varmodifiers.c between version 1.43 and 1.44

version 1.43, 2015/11/15 06:19:22 version 1.44, 2016/10/02 17:42:31
Line 1452 
Line 1452 
                 char *newStr;                  char *newStr;
   
                 tstr++;                  tstr++;
                 if (DEBUG(VAR))                  if (DEBUG(VAR)) {
                         printf("Applying :%c to \"%s\"\n", *tstr, str);                          if (str != NULL)
                                   printf("Applying :%c to \"%s\"\n", *tstr, str);
                           else
                                   printf("Applying :%c\n", *tstr);
                   }
   
                 mod = choose_mod[(unsigned char)*tstr];                  mod = choose_mod[(unsigned char)*tstr];
                 arg = NULL;                  arg = NULL;
Line 1501 
Line 1505 
                         *freePtr = false;                          *freePtr = false;
                         break;                          break;
                 }                  }
                 if (DEBUG(VAR))                  if (DEBUG(VAR) && str != NULL)
                         printf("Result is \"%s\"\n", str);                          printf("Result is \"%s\"\n", str);
         }          }
         if (*tstr == '\0')          if (*tstr == '\0')

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.44