Module Name: src Committed By: christos Date: Sun Dec 12 20:16:09 UTC 2010
Modified Files: src/lib/libc/gen: errlist.awk Log Message: remove comment To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/lib/libc/gen/errlist.awk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libc/gen/errlist.awk diff -u src/lib/libc/gen/errlist.awk:1.1 src/lib/libc/gen/errlist.awk:1.2 --- src/lib/libc/gen/errlist.awk:1.1 Sun Dec 12 15:08:27 2010 +++ src/lib/libc/gen/errlist.awk Sun Dec 12 15:16:09 2010 @@ -1,5 +1,5 @@ #! /usr/bin/awk -f -# $NetBSD: errlist.awk,v 1.1 2010/12/12 20:08:27 christos Exp $ +# $NetBSD: errlist.awk,v 1.2 2010/12/12 20:16:09 christos Exp $ # # Copyright (c) 2010 The NetBSD Foundation, Inc. # All rights reserved. @@ -36,7 +36,7 @@ # POSSIBILITY OF SUCH DAMAGE. # function tabs(desc) { - l = length(desc) + 3; /* 3 = ["",] */ + l = length(desc) + 3; if (l < 16) return "\t\t\t\t"; else if (l < 24) @@ -59,7 +59,7 @@ printf("#if 0\n"); printf("static char sccsid[] = \"@(#)errlst.c 8.2 (Berkeley) 11/16/93\";\n"); printf("#else\n"); - printf("__RCSID(\"$NetBSD: errlist.awk,v 1.1 2010/12/12 20:08:27 christos Exp $\");\n"); + printf("__RCSID(\"$NetBSD: errlist.awk,v 1.2 2010/12/12 20:16:09 christos Exp $\");\n"); printf("#endif\n"); printf("#endif /* LIBC_SCCS and not lint */\n\n"); printf("#include <errno.h>\n");