seq: remove unused fflag

This commit is contained in:
Connor Lane Smith 2012-06-09 18:53:39 +01:00
parent ec6924a56e
commit 284e9f723d

3
seq.c
View File

@ -15,7 +15,7 @@ int
main(int argc, char *argv[]) main(int argc, char *argv[])
{ {
const char *starts = "1", *steps = "1", *ends = "1", *sep = "\n"; const char *starts = "1", *steps = "1", *ends = "1", *sep = "\n";
bool fflag = false, wflag = false; bool wflag = false;
char c, ftmp[BUFSIZ], *fmt = ftmp; char c, ftmp[BUFSIZ], *fmt = ftmp;
double start, step, end, out, dir; double start, step, end, out, dir;
@ -25,7 +25,6 @@ main(int argc, char *argv[])
if(!validfmt(optarg)) if(!validfmt(optarg))
eprintf("%s: invalid format\n", optarg); eprintf("%s: invalid format\n", optarg);
fmt = optarg; fmt = optarg;
fflag = true;
break; break;
case 's': case 's':
sep = optarg; sep = optarg;