diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-08-29 13:19:10 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-08-29 13:19:10 +0300 |
commit | ba1e7ab66563efb5b597a418e2e9fb4a01998d03 (patch) | |
tree | a9cf2a74f9fd34725a507a3b9cef8bd1566a1664 /awklib/eg/lib/getopt.awk | |
parent | 5a05ddf24b9f5ebc81a1b295ba7a6fbc7348776b (diff) | |
parent | 6c541fd0f75cd328dd80afec757ecccc833719af (diff) | |
download | egawk-ba1e7ab66563efb5b597a418e2e9fb4a01998d03.tar.gz egawk-ba1e7ab66563efb5b597a418e2e9fb4a01998d03.tar.bz2 egawk-ba1e7ab66563efb5b597a418e2e9fb4a01998d03.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'awklib/eg/lib/getopt.awk')
-rw-r--r-- | awklib/eg/lib/getopt.awk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/awklib/eg/lib/getopt.awk b/awklib/eg/lib/getopt.awk index db957ceb..6b1f4c50 100644 --- a/awklib/eg/lib/getopt.awk +++ b/awklib/eg/lib/getopt.awk @@ -38,8 +38,7 @@ function getopt(argc, argv, options, thisopt, i) i = index(options, thisopt) if (i == 0) { if (Opterr) - printf("%c -- invalid option\n", - thisopt) > "/dev/stderr" + printf("%c -- invalid option\n", thisopt) > "/dev/stderr" if (_opti >= length(argv[Optind])) { Optind++ _opti = 0 |