summaryrefslogtreecommitdiff
path: root/src/dd.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2004-09-21 22:07:51 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2004-09-21 22:07:51 +0000
commit3456364b8c7674b27abbc2afdfdcf533084d3499 (patch)
tree741bc774e7fee730b4619609a01df61e82cbb262 /src/dd.c
parentaa1ed281856ed207f1fc1f8a60ffcf32330c8fc2 (diff)
downloadcoreutils-3456364b8c7674b27abbc2afdfdcf533084d3499.tar.xz
(main): Use getopt where it suffices, not getopt_long.
Diffstat (limited to 'src/dd.c')
-rw-r--r--src/dd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dd.c b/src/dd.c
index 4cbb58d98..879a88e33 100644
--- a/src/dd.c
+++ b/src/dd.c
@@ -1360,7 +1360,7 @@ main (int argc, char **argv)
parse_long_options (argc, argv, PROGRAM_NAME, PACKAGE, VERSION,
usage, AUTHORS, (char const *) NULL);
- if (getopt_long (argc, argv, "", NULL, NULL) != -1)
+ if (getopt (argc, argv, "") != -1)
usage (EXIT_FAILURE);
/* Don't close stdout on exit from here on. */