changeset 4680:0ec32cb1202f

Correct indentation of cpp directives.
author Jim Meyering <jim@meyering.net>
date Wed, 10 Sep 2003 08:33:11 +0000
parents b3ad36bab412
children f07e06abfead
files lib/error.c
diffstat 1 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/lib/error.c
+++ b/lib/error.c
@@ -132,11 +132,11 @@
 static void
 error_tail (int status, int errnum, const char *message, va_list args)
 {
-# if HAVE_VPRINTF || _LIBC
-#  if _LIBC
+#if HAVE_VPRINTF || _LIBC
+# if _LIBC
   if (_IO_fwide (stderr, 0) > 0)
     {
-#   define ALLOCA_LIMIT	2000
+#  define ALLOCA_LIMIT	2000
       size_t len = strlen (message) + 1;
       wchar_t *wmessage = NULL;
       mbstate_t st;
@@ -174,21 +174,21 @@
       __vfwprintf (stderr, wmessage, args);
     }
   else
-#  endif
+# endif
     vfprintf (stderr, message, args);
-# else
+#else
   _doprnt (message, args, stderr);
-# endif
+#endif
   va_end (args);
 
   ++error_message_count;
   if (errnum)
     print_errno_message (errnum);
-# if _LIBC
+#if _LIBC
   if (_IO_fwide (stderr, 0) > 0)
     putwc (L'\n', stderr);
   else
-# endif
+#endif
     putc ('\n', stderr);
   fflush (stderr);
   if (status)