diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-05 09:18:54 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-05 09:18:54 +0000 |
commit | a60f84ebf07863e390b72a2b6150e461a1ec18e9 (patch) | |
tree | f59bc665cfe3d2d32622450d80523e3c1265e501 /coreutils/od_bloaty.c | |
parent | f6efccc0659a2e2978f2021153f34ce92257ad2b (diff) | |
download | busybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.tar.gz busybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.tar.bz2 busybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.zip |
*: rename ATTRIBUTE_XXX to just XXX.
Diffstat (limited to 'coreutils/od_bloaty.c')
-rw-r--r-- | coreutils/od_bloaty.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/od_bloaty.c b/coreutils/od_bloaty.c index ce963db8a..a2eaf11d9 100644 --- a/coreutils/od_bloaty.c +++ b/coreutils/od_bloaty.c | |||
@@ -364,7 +364,7 @@ print_long_double(size_t n_bytes, const char *block, const char *fmt_string) | |||
364 | 364 | ||
365 | static void | 365 | static void |
366 | print_named_ascii(size_t n_bytes, const char *block, | 366 | print_named_ascii(size_t n_bytes, const char *block, |
367 | const char *unused_fmt_string ATTRIBUTE_UNUSED) | 367 | const char *unused_fmt_string UNUSED_PARAM) |
368 | { | 368 | { |
369 | /* Names for some non-printing characters. */ | 369 | /* Names for some non-printing characters. */ |
370 | static const char charname[33][3] ALIGN1 = { | 370 | static const char charname[33][3] ALIGN1 = { |
@@ -404,7 +404,7 @@ print_named_ascii(size_t n_bytes, const char *block, | |||
404 | 404 | ||
405 | static void | 405 | static void |
406 | print_ascii(size_t n_bytes, const char *block, | 406 | print_ascii(size_t n_bytes, const char *block, |
407 | const char *unused_fmt_string ATTRIBUTE_UNUSED) | 407 | const char *unused_fmt_string UNUSED_PARAM) |
408 | { | 408 | { |
409 | // buf[N] pos: 01234 56789 | 409 | // buf[N] pos: 01234 56789 |
410 | char buf[12] = " x\0 0xx\0"; | 410 | char buf[12] = " x\0 0xx\0"; |
@@ -814,7 +814,7 @@ skip(off_t n_skip) | |||
814 | typedef void FN_format_address(off_t address, char c); | 814 | typedef void FN_format_address(off_t address, char c); |
815 | 815 | ||
816 | static void | 816 | static void |
817 | format_address_none(off_t address ATTRIBUTE_UNUSED, char c ATTRIBUTE_UNUSED) | 817 | format_address_none(off_t address UNUSED_PARAM, char c UNUSED_PARAM) |
818 | { | 818 | { |
819 | } | 819 | } |
820 | 820 | ||