Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libc/locale fix type in comment
details: https://anonhg.NetBSD.org/src/rev/61ef68c63564
branches: trunk
changeset: 515540:61ef68c63564
user: yamt <yamt%NetBSD.org@localhost>
date: Fri Sep 28 09:29:17 2001 +0000
description:
fix type in comment
diffstat:
lib/libc/locale/wcstod.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 9cdf0dd8fbb0 -r 61ef68c63564 lib/libc/locale/wcstod.c
--- a/lib/libc/locale/wcstod.c Fri Sep 28 08:45:41 2001 +0000
+++ b/lib/libc/locale/wcstod.c Fri Sep 28 09:29:17 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: wcstod.c,v 1.1 2001/09/27 16:30:36 yamt Exp $ */
+/* $NetBSD: wcstod.c,v 1.2 2001/09/28 09:29:17 yamt Exp $ */
/*-
* Copyright (c)1999, 2000, 2001 Citrus Project,
@@ -70,7 +70,7 @@
src++;
size = wcsspn(src, _L("0123456789"));
src += size;
- if (*src == _LC('.')) {/* XXX usr localeconv */
+ if (*src == _LC('.')) {/* XXX use localeconv */
src++;
size = wcsspn(src, _L("0123456789"));
src += size;
Home |
Main Index |
Thread Index |
Old Index