maint: update copyright
[gnulib.git] / tests / test-md5.c
index c3f4521..b86cca8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2005, 2009 Free Software Foundation
+ * Copyright (C) 2005, 2009-2014 Free Software Foundation, Inc.
  * Written by Simon Josefsson
  *
  * This program is free software: you can redistribute it and/or modify
@@ -42,10 +42,10 @@ main (void)
       size_t i;
       printf ("expected:\n");
       for (i = 0; i < MD5_DIGEST_SIZE; i++)
-       printf ("%02x ", out1[i] & 0xFF);
+        printf ("%02x ", out1[i] & 0xFF);
       printf ("\ncomputed:\n");
       for (i = 0; i < MD5_DIGEST_SIZE; i++)
-       printf ("%02x ", buf[i] & 0xFF);
+        printf ("%02x ", buf[i] & 0xFF);
       printf ("\n");
       return 1;
     }
@@ -55,10 +55,10 @@ main (void)
       size_t i;
       printf ("expected:\n");
       for (i = 0; i < MD5_DIGEST_SIZE; i++)
-       printf ("%02x ", out2[i] & 0xFF);
+        printf ("%02x ", out2[i] & 0xFF);
       printf ("\ncomputed:\n");
       for (i = 0; i < MD5_DIGEST_SIZE; i++)
-       printf ("%02x ", buf[i] & 0xFF);
+        printf ("%02x ", buf[i] & 0xFF);
       printf ("\n");
       return 1;
     }