Use spaces for indentation, not tabs.
[gnulib.git] / lib / vfprintf.c
index b240b0d..6e3d595 100644 (file)
@@ -52,11 +52,11 @@ vfprintf (FILE *fp, const char *format, va_list args)
   if (fwrite (output, 1, len, fp) < len)
     {
       if (output != buf)
-       {
-         int saved_errno = errno;
-         free (output);
-         errno = saved_errno;
-       }
+        {
+          int saved_errno = errno;
+          free (output);
+          errno = saved_errno;
+        }
       return -1;
     }