diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-01-18 22:29:13 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-01-18 22:29:13 -0800 |
commit | 0a0e09d56beaae039e77bd93ca6b0490d9ce42a4 (patch) | |
tree | ae5a9afa0aa7a714d81aecf488a63a3c907f7395 | |
parent | 31313245d3d5ccb04d56cf8602c175d400408b41 (diff) | |
download | abc80-0a0e09d56beaae039e77bd93ca6b0490d9ce42a4.tar.gz abc80-0a0e09d56beaae039e77bd93ca6b0490d9ce42a4.tar.xz abc80-0a0e09d56beaae039e77bd93ca6b0490d9ce42a4.zip |
abcprintd: drop -t option from getopt()
Drop the no-longer-implemented -t option from the getopt() call.
This is a cleanup only; it will already not be recognized as a
valid option.
-rw-r--r-- | tools/abcprintd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/abcprintd.c b/tools/abcprintd.c index a6e03b4..58b582d 100644 --- a/tools/abcprintd.c +++ b/tools/abcprintd.c @@ -207,7 +207,7 @@ int main(int argc, char *argv[]) fileops = false; - while ((o = getopt(argc, argv, "d:t")) != EOF) { + while ((o = getopt(argc, argv, "d:")) != EOF) { switch (o) { case 'd': if (chdir(optarg)) { |