A more correct fix for PR standards/52282.
This commit is contained in:
parent
5dd54c880f
commit
b22c29c1cc
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: vfwprintf.c,v 1.35 2017/07/10 22:49:40 perseant Exp $ */
|
||||
/* $NetBSD: vfwprintf.c,v 1.36 2017/07/11 19:36:38 perseant Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1990, 1993
|
||||
|
@ -38,7 +38,7 @@
|
|||
static char sccsid[] = "@(#)vfprintf.c 8.1 (Berkeley) 6/4/93";
|
||||
__FBSDID("$FreeBSD: src/lib/libc/stdio/vfwprintf.c,v 1.27 2007/01/09 00:28:08 imp Exp $");
|
||||
#else
|
||||
__RCSID("$NetBSD: vfwprintf.c,v 1.35 2017/07/10 22:49:40 perseant Exp $");
|
||||
__RCSID("$NetBSD: vfwprintf.c,v 1.36 2017/07/11 19:36:38 perseant Exp $");
|
||||
#endif
|
||||
#endif /* LIBC_SCCS and not lint */
|
||||
|
||||
|
@ -930,7 +930,7 @@ reswitch: switch (ch) {
|
|||
flags |= GROUPING;
|
||||
else {
|
||||
thousands_sep = '\0';
|
||||
grouping = "";
|
||||
grouping = NULL;
|
||||
}
|
||||
goto rflag;
|
||||
case '.':
|
||||
|
|
Loading…
Reference in New Issue