summaryrefslogtreecommitdiff
path: root/src/od.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1992-12-10 19:34:55 +0000
committerJim Meyering <jim@meyering.net>1992-12-10 19:34:55 +0000
commit38575ad4621f4c73c70ce1c607d031736021f3b0 (patch)
treef1c5a678885df6f96ea4f55dc6de4e39929dea13 /src/od.c
parent08c5ed9a7e032ad266e3d03a04f2200dbcc0fa8a (diff)
downloadcoreutils-38575ad4621f4c73c70ce1c607d031736021f3b0.tar.xz
Merge with pre-release 1.3.6.
Diffstat (limited to 'src/od.c')
-rw-r--r--src/od.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/od.c b/src/od.c
index ae2c3da3b..0e9161b26 100644
--- a/src/od.c
+++ b/src/od.c
@@ -1,4 +1,4 @@
-/* od -- dump in octal (and other formats) the contents of files
+/* od -- dump files in octal and other formats
Copyright (C) 1992 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
@@ -1624,13 +1624,13 @@ main (argc, argv)
specs. GNU od accepts any combination of old- and
new-style options. Format specification options accumulate. */
-#define CASE_OLD_ARG(old_char,new_string) \
- case old_char: \
- { \
- int tmp; \
- tmp = decode_format_string (new_string); \
- assert (tmp == 0); \
- } \
+#define CASE_OLD_ARG(old_char,new_string) \
+ case old_char: \
+ { \
+ int tmp; \
+ tmp = decode_format_string (new_string); \
+ assert (tmp == 0); \
+ } \
break
CASE_OLD_ARG ('a', "a");