diff lib/memcmp2.c @ 12421:e8d2c6fc33ad

Use spaces for indentation, not tabs.
author Bruno Haible <bruno@clisp.org>
date Thu, 10 Dec 2009 20:28:30 +0100
parents 61dfd8dc1a13
children c2cbabec01dd
line wrap: on
line diff
--- a/lib/memcmp2.c
+++ b/lib/memcmp2.c
@@ -28,9 +28,9 @@
   if (cmp == 0)
     {
       if (n1 < n2)
-	cmp = -1;
+        cmp = -1;
       else if (n1 > n2)
-	cmp = 1;
+        cmp = 1;
     }
   return cmp;
 }