From 284e9f723d71123b8c15afd1aac3eb60ee1d28be Mon Sep 17 00:00:00 2001 From: Connor Lane Smith Date: Sat, 9 Jun 2012 18:53:39 +0100 Subject: [PATCH] seq: remove unused fflag --- seq.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/seq.c b/seq.c index fe10249..1095fb1 100644 --- a/seq.c +++ b/seq.c @@ -15,7 +15,7 @@ int main(int argc, char *argv[]) { const char *starts = "1", *steps = "1", *ends = "1", *sep = "\n"; - bool fflag = false, wflag = false; + bool wflag = false; char c, ftmp[BUFSIZ], *fmt = ftmp; double start, step, end, out, dir; @@ -25,7 +25,6 @@ main(int argc, char *argv[]) if(!validfmt(optarg)) eprintf("%s: invalid format\n", optarg); fmt = optarg; - fflag = true; break; case 's': sep = optarg;