Use spaces for indentation, not tabs.
[gnulib.git] / lib / btowc.c
index 7f3b966..61020e0 100644 (file)
@@ -32,7 +32,7 @@ btowc (int c)
 
       buf[0] = c;
       if (mbtowc (&wc, buf, 1) >= 0)
-       return wc;
+        return wc;
     }
   return WEOF;
 }