Module Name: src
Committed By: enami
Date: Tue Dec 15 00:35:36 UTC 2009
Modified Files:
src/lib/libc/locale: nl_langinfo.3
Log Message:
Put space after comma in the C code example.
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/lib/libc/locale/nl_langinfo.3
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/locale/nl_langinfo.3
diff -u src/lib/libc/locale/nl_langinfo.3:1.17 src/lib/libc/locale/nl_langinfo.3:1.18
--- src/lib/libc/locale/nl_langinfo.3:1.17 Thu Mar 12 12:50:31 2009
+++ src/lib/libc/locale/nl_langinfo.3 Tue Dec 15 00:35:36 2009
@@ -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 <[email protected]>.
.\" 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