From: Jim Meyering Date: Sun, 11 Nov 2001 15:42:07 +0000 (+0000) Subject: (struct tspec): Declare function pointer with prototype. X-Git-Tag: TEXTUTILS-2_0_17~98 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=436f7c405aa2ec21e643f33c303ab29467359471;p=thirdparty%2Fcoreutils.git (struct tspec): Declare function pointer with prototype. --- diff --git a/src/od.c b/src/od.c index 9b97694219..a2798e6cbf 100644 --- a/src/od.c +++ b/src/od.c @@ -96,7 +96,7 @@ struct tspec { enum output_format fmt; enum size_spec size; - void (*print_function) (); + void (*print_function) PARAMS ((size_t, const char *, const char *)); char *fmt_string; int hexl_mode_trailer; int field_width;