=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/parse.c,v retrieving revision 1.108 retrieving revision 1.109 diff -c -r1.108 -r1.109 *** src/usr.bin/make/parse.c 2012/11/07 14:18:41 1.108 --- src/usr.bin/make/parse.c 2012/11/24 11:06:08 1.109 *************** *** 1,4 **** ! /* $OpenBSD: parse.c,v 1.108 2012/11/07 14:18:41 espie Exp $ */ /* $NetBSD: parse.c,v 1.29 1997/03/10 21:20:04 christos Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: parse.c,v 1.109 2012/11/24 11:06:08 espie Exp $ */ /* $NetBSD: parse.c,v 1.29 1997/03/10 21:20:04 christos Exp $ */ /* *************** *** 641,647 **** Parse_Error(PARSE_FATAL, "Need an operator (likely from a cvs update conflict)"); } else { ! Parse_Error(PARSE_FATAL, "Need an operator"); } return NULL; } --- 641,648 ---- Parse_Error(PARSE_FATAL, "Need an operator (likely from a cvs update conflict)"); } else { ! Parse_Error(PARSE_FATAL, ! "Need an operator in '%s'", line); } return NULL; }