seq: remove unused fflag
This commit is contained in:
parent
ec6924a56e
commit
284e9f723d
3
seq.c
3
seq.c
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user