summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-09-14 16:03:58 +0000
committerJim Meyering <jim@meyering.net>1997-09-14 16:03:58 +0000
commit9aef26e3d0b93d29c3ada008438bde5fee41a788 (patch)
tree37f6db01e50d0f22dd9a987871bab439132a2015 /src
parentc2210482eeeb9e2633e0cb7b91bb15e6dade3989 (diff)
downloadcoreutils-9aef26e3d0b93d29c3ada008438bde5fee41a788.tar.xz
(main) [--traditional]: Don't give diagnostic about there
being more than three arguments if there are *no* arguments specified. Reported by Jochen Hein.
Diffstat (limited to 'src')
-rw-r--r--src/od.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/od.c b/src/od.c
index 24af8419e..cf30b76ec 100644
--- a/src/od.c
+++ b/src/od.c
@@ -28,7 +28,7 @@
#include "error.h"
#if defined(__GNUC__) || defined(STDC_HEADERS)
-#include <float.h>
+# include <float.h>
#endif
#ifdef HAVE_LONG_DOUBLE
@@ -1851,7 +1851,7 @@ the maximum\nrepresentable value of type `long'"), optarg);
usage (1);
}
}
- else
+ else if (n_files > 3)
{
error (0, 0,
_("in compatibility mode there may be no more than 3 arguments"));