Use spaces for indentation, not tabs.
[gnulib.git] / lib / dprintf.c
index 91e4a93..70f992f 100644 (file)
@@ -49,11 +49,11 @@ dprintf (int fd, const char *format, ...)
   if (full_write (fd, output, len) < len)
     {
       if (output != buf)
-       {
-         int saved_errno = errno;
-         free (output);
-         errno = saved_errno;
-       }
+        {
+          int saved_errno = errno;
+          free (output);
+          errno = saved_errno;
+        }
       return -1;
     }