]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/lib/crc32.c
19July06
[bacula/bacula] / bacula / src / lib / crc32.c
index 6451c0a24c7f2dfc29f92aca88535b52893f9252..8b379a727fc356a4707d12e453cbb1f34749620c 100644 (file)
@@ -31,7 +31,7 @@
  * The following code can be used to generate the static CRC table.
  *
  * Note, the magic number 0xedb88320L below comes from the terms
- * of the defining polynomial x^n, 
+ * of the defining polynomial x^n,
  * where n=0,1,2,4,5,7,8,10,11,12,16,22,23,26
  */
 #include <stdio.h>
@@ -54,7 +54,7 @@ main()
       buf[k++] = crc;
       if (k == 5) {
         k = 0;
-         printf("  0x%08x, 0x%08x, 0x%08x, 0x%08x, 0x%08x,\n", 
+        printf("  0x%08x, 0x%08x, 0x%08x, 0x%08x, 0x%08x,\n",
            buf[0], buf[1], buf[2], buf[3], buf[4]);
       }
    }