diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-04-06 08:06:36 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-04-06 08:06:36 +0000 |
commit | 93d6513d9315fa72d7af4ac2435f8c1e243273cb (patch) | |
tree | a7642802cbab4053e62cf13f2daa194c524da2e1 /coreutils/tail.c | |
parent | 7a4b7194864e67f512dac1081f244d3c07a0eca2 (diff) | |
download | busybox-w32-93d6513d9315fa72d7af4ac2435f8c1e243273cb.tar.gz busybox-w32-93d6513d9315fa72d7af4ac2435f8c1e243273cb.tar.bz2 busybox-w32-93d6513d9315fa72d7af4ac2435f8c1e243273cb.zip |
Some more minor updates to better use some gcc attributes.
-Erik
Diffstat (limited to 'coreutils/tail.c')
-rw-r--r-- | coreutils/tail.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c index 5e05fe8e7..315eee188 100644 --- a/coreutils/tail.c +++ b/coreutils/tail.c | |||
@@ -445,6 +445,8 @@ extern int tail_main(int argc, char **argv) | |||
445 | 445 | ||
446 | 446 | ||
447 | static void detailed_error(int i, int errnum, char *fmt, ...) | 447 | static void detailed_error(int i, int errnum, char *fmt, ...) |
448 | __attribute__ ((format (printf, 3, 4))); | ||
449 | static void detailed_error(int i, int errnum, char *fmt, ...) | ||
448 | { | 450 | { |
449 | va_list arguments; | 451 | va_list arguments; |
450 | 452 | ||