Use spaces for indentation, not tabs.
[gnulib.git] / tests / test-lseek.c
index ebba02e..e474a0b 100644 (file)
 #include <unistd.h>
 
 #define ASSERT(expr) \
-  do                                                                        \
-    {                                                                       \
-      if (!(expr))                                                          \
-        {                                                                   \
+  do                                                                         \
+    {                                                                        \
+      if (!(expr))                                                           \
+        {                                                                    \
           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
-          fflush (stderr);                                                  \
-          abort ();                                                         \
-        }                                                                   \
-    }                                                                       \
+          fflush (stderr);                                                   \
+          abort ();                                                          \
+        }                                                                    \
+    }                                                                        \
   while (0)
 
 /* ARGC must be 2; *ARGV[1] is '0' if stdin and stdout are files, '1'
@@ -51,7 +51,7 @@ main (int argc, char **argv)
       errno = 0;
 #if ! defined __BEOS__
       /* POSIX says that the last lseek call, when failing, does not change
-        the current offset.  But BeOS sets it to 0.  */
+         the current offset.  But BeOS sets it to 0.  */
       ASSERT (lseek (0, (off_t)0, SEEK_CUR) == 2);
 #endif
 #if 0 /* leads to SIGSYS on IRIX 6.5 */
@@ -65,7 +65,7 @@ main (int argc, char **argv)
       errno = 0;
 #if ! defined __BEOS__
       /* POSIX says that the last lseek call, when failing, does not change
-        the current offset.  But BeOS sets it to 0.  */
+         the current offset.  But BeOS sets it to 0.  */
       ASSERT (lseek (1, (off_t)0, SEEK_CUR) == 2);
 #endif
 #if 0 /* leads to SIGSYS on IRIX 6.5 */