summaryrefslogtreecommitdiff
path: root/libio/swprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libio/swprintf.c')
-rw-r--r--libio/swprintf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libio/swprintf.c b/libio/swprintf.c
index 10f722d035..c85fb93ae7 100644
--- a/libio/swprintf.c
+++ b/libio/swprintf.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2018 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2019 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <libioP.h>
#include <stdarg.h>
@@ -28,7 +28,7 @@ __swprintf (wchar_t *s, size_t n, const wchar_t *format, ...)
int done;
va_start (arg, format);
- done = __vswprintf (s, n, format, arg);
+ done = __vswprintf_internal (s, n, format, arg, 0);
va_end (arg);
return done;