summaryrefslogtreecommitdiff
path: root/localedata/tst-numeric.c
diff options
context:
space:
mode:
Diffstat (limited to 'localedata/tst-numeric.c')
-rw-r--r--localedata/tst-numeric.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/localedata/tst-numeric.c b/localedata/tst-numeric.c
index 46a6b48150..dc57862afb 100644
--- a/localedata/tst-numeric.c
+++ b/localedata/tst-numeric.c
@@ -1,5 +1,5 @@
/* Testing the implementation of LC_NUMERIC and snprintf().
- Copyright (C) 2003-2016 Free Software Foundation, Inc.
+ Copyright (C) 2003-2018 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Petter Reinholdtsen <pere@hungry.com>, 2003
@@ -41,7 +41,7 @@
int
main (int argc, char *argv[])
{
- char *s = malloc (201);
+ char s[200];
double val;
/* Make sure to read the value before setting of the locale, as
@@ -54,7 +54,7 @@ main (int argc, char *argv[])
exit (EXIT_SETLOCALE);
}
- if (snprintf (s, 200, argv[2], val) == -1)
+ if (snprintf (s, sizeof (s), argv[2], val) == -1)
{
perror ("snprintf");
exit (EXIT_SNPRINTF);