]> pd.if.org Git - pdclib/blobdiff - functions/string/strncmp.c
More fixes.
[pdclib] / functions / string / strncmp.c
index 1e9119dbd56ec0d70888a681a257452bad549e4d..2965b0d37bd029724f461ec2641f848b57fe1bda 100644 (file)
@@ -16,7 +16,7 @@ int strncmp( const char * s1, const char * s2, size_t n )
         ++s2;
         --n;
     }
-    if ( ( n == 0 ) )
+    if ( n == 0 )
     {
         return 0;
     }