Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libc/gen fix missing formatting escape.



details:   https://anonhg.NetBSD.org/src/rev/1b9b7bc60ff1
branches:  trunk
changeset: 500868:1b9b7bc60ff1
user:      christos <christos%NetBSD.org@localhost>
date:      Tue Dec 19 21:17:16 2000 +0000

description:
fix missing formatting escape.

diffstat:

 lib/libc/gen/assert.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 989a4bf72e5f -r 1b9b7bc60ff1 lib/libc/gen/assert.c
--- a/lib/libc/gen/assert.c     Tue Dec 19 21:09:54 2000 +0000
+++ b/lib/libc/gen/assert.c     Tue Dec 19 21:17:16 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: assert.c,v 1.10 2000/12/19 14:32:59 kleink Exp $       */
+/*     $NetBSD: assert.c,v 1.11 2000/12/19 21:17:16 christos Exp $     */
 
 /*-
  * Copyright (c) 1992, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)assert.c   8.1 (Berkeley) 6/4/93";
 #else
-__RCSID("$NetBSD: assert.c,v 1.10 2000/12/19 14:32:59 kleink Exp $");
+__RCSID("$NetBSD: assert.c,v 1.11 2000/12/19 21:17:16 christos Exp $");
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -87,7 +87,7 @@
                 * XXX: check $DIAGASSERT here, and do user-defined actions
                 */
        (void)fprintf(stderr,
-        "%s: assertion \"%s\" failed: file \"%s\", line %d%s%s\n",
+        "%s: assertion \"%s\" failed: file \"%s\", line %d%s%s%s\n",
             __progname, failedexpr, file, line,
            function ? ", function \"" : "",
            function ? function : "",



Home | Main Index | Thread Index | Old Index