summaryrefslogtreecommitdiff
path: root/usr.bin/awk/maketab.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/awk/maketab.c')
-rw-r--r--usr.bin/awk/maketab.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/awk/maketab.c b/usr.bin/awk/maketab.c
index 05d15b2c0e9..01e9aff4be6 100644
--- a/usr.bin/awk/maketab.c
+++ b/usr.bin/awk/maketab.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: maketab.c,v 1.9 2007/04/02 08:00:07 moritz Exp $ */
+/* $OpenBSD: maketab.c,v 1.10 2008/10/06 20:38:33 millert Exp $ */
/****************************************************************
Copyright (C) Lucent Technologies 1997
All Rights Reserved
@@ -136,8 +136,7 @@ int main(int argc, char *argv[])
if (n != 4 || c != '#' || strcmp(def, "define") != 0)
continue; /* not a valid #define */
if (tok < FIRSTTOKEN || tok > LASTTOKEN) {
- fprintf(stderr, "maketab: funny token %d %s ignored\n",
- tok, buf);
+ /* fprintf(stderr, "maketab: funny token %d %s ignored\n", tok, buf); */
continue;
}
names[tok-FIRSTTOKEN] = (char *) strdup(name);