about summary refs log tree commit diff
path: root/stdio-common/vfscanf-internal.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/vfscanf-internal.c')
-rw-r--r--stdio-common/vfscanf-internal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdio-common/vfscanf-internal.c b/stdio-common/vfscanf-internal.c
index 78fe04cc9c..888b2b1d96 100644
--- a/stdio-common/vfscanf-internal.c
+++ b/stdio-common/vfscanf-internal.c
@@ -1360,7 +1360,7 @@ __vfscanf_internal (FILE *s, const char *format, va_list argptr,
 		    wchar_t *cp = (wchar_t *) realloc (*strptr,
 						       ((wstr
 							 - (wchar_t *) *strptr)
-							* sizeof(wchar_t)));
+							* sizeof (wchar_t)));
 		    if (cp != NULL)
 		      *strptr = (char *) cp;
 		  }
@@ -2756,7 +2756,7 @@ __vfscanf_internal (FILE *s, const char *format, va_list argptr,
 		    {
 		      wchar_t *cp = (wchar_t *)
 			realloc (*strptr, ((wstr - (wchar_t *) *strptr)
-					   * sizeof(wchar_t)));
+					   * sizeof (wchar_t)));
 		      if (cp != NULL)
 			*strptr = (char *) cp;
 		    }