[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.11 and 1.12

version 1.11, 2002/05/17 11:58:56 version 1.12, 2004/04/07 13:11:35
Line 113 
Line 113 
  *      A big one...   *      A big one...
  */   */
 void  void
 DieHorribly()  DieHorribly(void)
 {  {
         Job_AbortAll();          Job_AbortAll();
         if (DEBUG(GRAPH2))          if (DEBUG(GRAPH2))
Line 130 
Line 130 
  *      The program exits   *      The program exits
  */   */
 void  void
 Finish(errors)  Finish(int errors) /* number of errors encountered in Make_Make */
         int errors;     /* number of errors encountered in Make_Make */  
 {  {
         Fatal("%d error%s", errors, errors == 1 ? "" : "s");          Fatal("%d error%s", errors, errors == 1 ? "" : "s");
 }  }
Line 174 
Line 173 
         va_list ap;          va_list ap;
   
         va_start(ap, fmt);          va_start(ap, fmt);
         ParseVErrorInternal(Parse_Getfilename(), Parse_Getlineno(), type, fmt, ap);          ParseVErrorInternal(Parse_Getfilename(), Parse_Getlineno(), type,
               fmt, ap);
         va_end(ap);          va_end(ap);
 }  }
   

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12