seq: remove unused fflag

This commit is contained in:
Connor Lane Smith 2012-06-09 18:53:39 +01:00
parent ec6924a56e
commit 284e9f723d
1 changed files with 1 additions and 2 deletions

3
seq.c
View File

@ -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;