From 3a5f39b957fb9393b8bf678deb9c163946fc96f4 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sun, 22 Jun 2025 00:53:21 -0500 Subject: [PATCH] Whitespace. --- toys/posix/tar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toys/posix/tar.c b/toys/posix/tar.c index bcfb8ae9..17bf9d9f 100644 --- a/toys/posix/tar.c +++ b/toys/posix/tar.c @@ -1100,7 +1100,7 @@ void tar_main(void) // detect gzip and bzip signatures if (SWAP_BE16(*(short *)hdr)==0x1f8b) toys.optflags |= FLAG_z; else if (!smemcmp(hdr, "BZh", 3)) toys.optflags |= FLAG_j; - else if (!smemcmp(hdr, "\x28\xb5\x2f\xfd", 4)) toys.optflags|=FLAG_Z; + else if (!smemcmp(hdr, "\x28\xb5\x2f\xfd", 4)) toys.optflags|=FLAG_Z; else if (peek_be(hdr, 7) == 0xfd377a585a0000ULL) toys.optflags |= FLAG_J; else error_exit("Not tar"); -- 2.39.5