[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.12 and 1.13

version 1.12, 2004/04/07 13:11:35 version 1.13, 2007/09/17 09:28:36
Line 147 
Line 147 
  */   */
 /* VARARGS */  /* VARARGS */
 static void  static void
 ParseVErrorInternal(const char *cfname, unsigned long clineno, int type,  ParseVErrorInternal(const char *cfname, unsigned long clineno, int type,
         const char *fmt, va_list ap)          const char *fmt, va_list ap)
 {  {
         if (cfname)          if (cfname)
Line 173 
Line 173 
         va_list ap;          va_list ap;
   
         va_start(ap, fmt);          va_start(ap, fmt);
         ParseVErrorInternal(Parse_Getfilename(), Parse_Getlineno(), type,          ParseVErrorInternal(Parse_Getfilename(), Parse_Getlineno(), type,
             fmt, ap);              fmt, ap);
         va_end(ap);          va_end(ap);
 }  }

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