X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fwchar%2Fwcsncmp.c;fp=functions%2Fwchar%2Fwcsncmp.c;h=7ca9a9823b2264df3270c098553dcbc8c6399e5d;hb=3a2027b97e7a6c7ecb9fcd4c24b4c74459faddbc;hp=920d64719203e86ecc81f43b46c9946ea7c968f3;hpb=9fcf1b27fc705cc131b258478d95ce9de65aabc0;p=pdclib.old diff --git a/functions/wchar/wcsncmp.c b/functions/wchar/wcsncmp.c index 920d647..7ca9a98 100644 --- a/functions/wchar/wcsncmp.c +++ b/functions/wchar/wcsncmp.c @@ -18,7 +18,7 @@ int wcsncmp( const wchar_t * s1, const wchar_t * s2, size_t n ) ++s2; --n; } - if ( ( n == 0 ) ) + if ( n == 0 ) { return 0; }