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 421565e68e3d585149c6a432fc7acdfe120ec668..6a98dcd783c0c2a32c83418f4b69eaf4f2dc6721 100644 (file)
@@ -35,7 +35,7 @@
 #include "file.h"
 
 #ifndef lint
-FILE_RCSID("@(#)$File: compress.c,v 1.82 2015/11/09 21:03:51 christos Exp $")
+FILE_RCSID("@(#)$File: compress.c,v 1.83 2015/11/10 17:47:02 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 */