Use spaces for indentation, not tabs.
[gnulib.git] / lib / unistr / u32-strrchr.c
index b4641f3..c6f1b1d 100644 (file)
@@ -30,9 +30,9 @@ u32_strrchr (const uint32_t *s, ucs4_t uc)
   for (;; s++)
     {
       if (*s == uc)
-       result = (uint32_t *) s;
+        result = (uint32_t *) s;
       if (*s == 0)
-       break;
+        break;
     }
   return result;
 }