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

Diff for /src/usr.bin/make/error.c between version 1.7 and 1.8

version 1.7, 2001/05/29 12:17:05 version 1.8, 2001/07/18 14:49:13
Line 194 
Line 194 
         va_dcl          va_dcl
 #endif  #endif
 {  {
         (void)fprintf(stderr, "\"%s\", line %lu: ", cfname, clineno);          if (cfname)
               (void)fprintf(stderr, "\"%s\", line %lu: ", cfname, clineno);
         if (type == PARSE_WARNING)          if (type == PARSE_WARNING)
                 (void)fprintf(stderr, "warning: ");                  (void)fprintf(stderr, "warning: ");
         (void)vfprintf(stderr, fmt, ap);          (void)vfprintf(stderr, fmt, ap);

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8