]> granicus.if.org Git - file/commitdiff
Add missing bracket.
authorChristos Zoulas <christos@zoulas.com>
Tue, 10 Nov 2015 17:47:02 +0000 (17:47 +0000)
committerChristos Zoulas <christos@zoulas.com>
Tue, 10 Nov 2015 17:47:02 +0000 (17:47 +0000)
src/compress.c

index ab1a4222bcf2dcf61f42f22082ccd38189e076de..01e809a4ab8334816a8c7a203501ceac2511049f 100644 (file)
@@ -35,7 +35,7 @@
 #include "file.h"
 
 #ifndef lint
-FILE_RCSID("@(#)$File: compress.c,v 1.81 2015/11/05 16:21:06 christos Exp $")
+FILE_RCSID("@(#)$File: compress.c,v 1.82 2015/11/09 21:03:51 christos Exp $")
 #endif
 
 #include "magic.h"
@@ -130,7 +130,7 @@ private const struct {
        { "\037\235",   2, gzip_args,   1 },            /* compressed */
        /* Uncompress can get stuck; so use gzip first if we have it
         * Idea from Damien Clark, thanks! */
-       { "\037\235",   2, uncompress_args, 1,          /* compressed */
+       { "\037\235",   2, uncompress_args, 1 },        /* compressed */
        { "\037\213",   2, gzip_args,   1 },            /* gzipped */
        { "\037\236",   2, gzip_args,   1 },            /* frozen */
        { "\037\240",   2, gzip_args,   1 },            /* SCO LZH */