Source-Changes-HG archive

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

[src/trunk]: src/lib/libc/locale Put space after comma in the C code example.



details:   https://anonhg.NetBSD.org/src/rev/243850481c89
branches:  trunk
changeset: 750057:243850481c89
user:      enami <enami%NetBSD.org@localhost>
date:      Tue Dec 15 00:35:36 2009 +0000

description:
Put space after comma in the C code example.

diffstat:

 lib/libc/locale/nl_langinfo.3 |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r fba9811bdbb4 -r 243850481c89 lib/libc/locale/nl_langinfo.3
--- a/lib/libc/locale/nl_langinfo.3     Tue Dec 15 00:19:52 2009 +0000
+++ b/lib/libc/locale/nl_langinfo.3     Tue Dec 15 00:35:36 2009 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: nl_langinfo.3,v 1.17 2009/03/12 12:50:31 joerg Exp $
+.\"    $NetBSD: nl_langinfo.3,v 1.18 2009/12/15 00:35:36 enami Exp $
 .\"
 .\" Written by J.T. Conklin <jtc%NetBSD.org@localhost>.
 .\" Public domain.
@@ -113,7 +113,7 @@
        (void)setlocale(LC_ALL, "");
        ptr = nl_langinfo(D_T_FMT);
        strftime(datestring, sizeof(datestring), ptr, tm);
-       printf("%s\en",datestring);
+       printf("%s\en", datestring);
        return (0);
 }
 .Ed



Home | Main Index | Thread Index | Old Index