Use spaces for indentation, not tabs.
[gnulib.git] / tests / test-gc-arcfour.c
index 7ddeb58..31fa237 100644 (file)
@@ -60,10 +60,10 @@ main (int argc, char *argv[])
       size_t i;
       printf ("expected:\n");
       for (i = 0; i < 5; i++)
-       printf ("%02x ", scratch[i] & 0xFF);
+        printf ("%02x ", scratch[i] & 0xFF);
       printf ("\ncomputed:\n");
       for (i = 0; i < 5; i++)
-       printf ("%02x ", ciphertext_1[i] & 0xFF);
+        printf ("%02x ", ciphertext_1[i] & 0xFF);
       printf ("\n");
       return 1;
     }
@@ -83,10 +83,10 @@ main (int argc, char *argv[])
       size_t i;
       printf ("expected:\n");
       for (i = 0; i < 5; i++)
-       printf ("%02x ", plaintext_1[i] & 0xFF);
+        printf ("%02x ", plaintext_1[i] & 0xFF);
       printf ("\ncomputed:\n");
       for (i = 0; i < 5; i++)
-       printf ("%02x ", scratch[i] & 0xFF);
+        printf ("%02x ", scratch[i] & 0xFF);
       printf ("\n");
       return 1;
     }