[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.14 and 1.15

version 1.14, 2007/11/02 17:27:24 version 1.15, 2007/11/03 10:41:48
Line 41 
Line 41 
   
 #include "lowparse.h"  #include "lowparse.h"
   
 int         fatal_errors = 0;  int fatal_errors = 0;
   bool supervise_jobs = false;
   
 static void ParseVErrorInternal(const char *, unsigned long, int, const char *, va_list);  static void ParseVErrorInternal(const char *, unsigned long, int, const char *, va_list);
 /*-  /*-
  * Error --   * Error --
Line 73 
Line 75 
 {  {
         va_list ap;          va_list ap;
   
         va_start(ap, fmt);          if (supervise_jobs)
         Job_Wait();                  Job_Wait();
   
           va_start(ap, fmt);
         (void)vfprintf(stderr, fmt, ap);          (void)vfprintf(stderr, fmt, ap);
         va_end(ap);          va_end(ap);
         (void)fprintf(stderr, "\n");          (void)fprintf(stderr, "\n");

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15