Use spaces for indentation, not tabs.
[gnulib.git] / lib / posixver.c
index 73a6482..89b7c18 100644 (file)
@@ -48,7 +48,7 @@ posix2_version (void)
       char *e;
       long int i = strtol (s, &e, 10);
       if (! *e)
-       v = i;
+        v = i;
     }
 
   return v < INT_MIN ? INT_MIN : v < INT_MAX ? v : INT_MAX;