]> git.sur5r.net Git - cc65/blobdiff - test/val/lz4.c
remote TABs in doc/ and test/
[cc65] / test / val / lz4.c
index dceefbfccc152386c307c3a036de159cf61c3bb1..6fe72e72da432ee26597cd2e55bb2389d6644001 100644 (file)
@@ -660,10 +660,10 @@ static unsigned char buf[18830];
 
 int main() {
 
-       unsigned long cksum = adler32(0, NULL, 0);
+        unsigned long cksum = adler32(0, NULL, 0);
 
-       decompress_lz4(compressed, buf, 18830);
-       cksum = adler32(cksum, buf, 18830);
+        decompress_lz4(compressed, buf, 18830);
+        cksum = adler32(cksum, buf, 18830);
 
-       return cksum == 0xf748269d ? 0 : 1;
+        return cksum == 0xf748269d ? 0 : 1;
 }