Skip to content

Commit

Permalink
Add missing bracket.
Browse files Browse the repository at this point in the history
  • Loading branch information
zoulasc committed Nov 10, 2015
1 parent 20c0a38 commit cccd1fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/compress.c
Expand Up @@ -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"
Expand Down Expand Up @@ -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 */
Expand Down

0 comments on commit cccd1fb

Please sign in to comment.