Use spaces for indentation, not tabs.
[gnulib.git] / lib / c-strncasecmp.c
index 274e9b7..d1aec36 100644 (file)
@@ -40,7 +40,7 @@ c_strncasecmp (const char *s1, const char *s2, size_t n)
       c2 = c_tolower (*p2);
 
       if (--n == 0 || c1 == '\0')
-       break;
+        break;
 
       ++p1;
       ++p2;