sbase

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

commit 284e9f723d71123b8c15afd1aac3eb60ee1d28be
parent ec6924a56e5522a90788c49f060bd53c6379e1b2
Author: Connor Lane Smith <cls@lubutu.com>
Date:   Sat,  9 Jun 2012 18:53:39 +0100

seq: remove unused fflag
Diffstat:
Mseq.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 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;