diff options
-rw-r--r-- | StdLib/LibC/Stdio/vfscanf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/StdLib/LibC/Stdio/vfscanf.c b/StdLib/LibC/Stdio/vfscanf.c index 9cd2c47d79..1e8c7f920a 100644 --- a/StdLib/LibC/Stdio/vfscanf.c +++ b/StdLib/LibC/Stdio/vfscanf.c @@ -124,8 +124,8 @@ int __scanfdebug = 0; static int
__collate_range_cmp(int c1, int c2)
{
- static char s1[2] = { {0}, {0} };
- static char s2[2] = { {0}, {0} };
+ static char s1[2] = { 0 };
+ static char s2[2] = { 0 };
s1[0] = (char)c1;
s2[0] = (char)c2;
|