sbase

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

commit 0ba81a0f84aa555592ff890510323cd021ca9100
parent 0545d32ce98dd8a9eeafe829e227b9a779383aa0
Author: sin <sin@2f30.org>
Date:   Fri, 15 May 2015 12:37:33 +0100

grep: Remove unused variable

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

diff --git a/grep.c b/grep.c @@ -173,7 +173,7 @@ int main(int argc, char *argv[]) { struct pattern *pnode; - int i, m, flags = REG_NOSUB, match = NoMatch; + int m, flags = REG_NOSUB, match = NoMatch; FILE *fp; char *arg;