sbase

suckless unix tools
git clone git://git.suckless.org/sbase
Log | Files | Refs | README | LICENSE

commit 64aac9b504c23b1fdf451025ff3d0765bec6edcd
parent fe48fbc4e10f19ff8cffacce6e8afa2d25d4d10d
Author: sin <sin@2f30.org>
Date:   Thu, 20 Nov 2014 17:26:47 +0000

Just use int for mode

Diffstat:
Mgrep.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/grep.c b/grep.c @@ -24,7 +24,7 @@ static int sflag; static int vflag; static int xflag; static int many; -static char mode; +static int mode; struct pattern { char *pattern;