diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-11-23 21:11:27 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-11-23 21:11:27 +0000 |
commit | 97807b8291e7e5f35a12ab0307d8e56377eb24f4 (patch) | |
tree | 1b7cab765625b764961e6adea163f85b5f85bce4 /extra | |
parent | cf29148c9a9387a4a173dd56c7ae0fdd4418fad7 (diff) |
- fix args (untested)
Diffstat (limited to 'extra')
-rw-r--r-- | extra/locale/gen_wc8bit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extra/locale/gen_wc8bit.c b/extra/locale/gen_wc8bit.c index 20f8f648b..2fdcb6881 100644 --- a/extra/locale/gen_wc8bit.c +++ b/extra/locale/gen_wc8bit.c @@ -219,8 +219,8 @@ int main(int argc, char **argv) fprintf(out, "\t{ /* %.*s */", n, s0); } - memset(&csd[numsets],sizeof(charset_data),0); - memset(xi, sizeof(xi), 0); + memset(&csd[numsets], 0, sizeof(charset_data)); + memset(xi, 0, sizeof(xi)); { unsigned long c, wc; int lines; |