From: Theodore Ts'o Date: Thu, 11 Dec 2003 16:24:44 +0000 (-0500) Subject: com_err.3: Fix C syntax error pointed out by ESR. X-Git-Tag: E2FSPROGS-1_35-WIP-0131~27 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=09e7220f62c9c149e710e1b8e2f12d584ffbc09b;p=thirdparty%2Fe2fsprogs.git com_err.3: Fix C syntax error pointed out by ESR. --- diff --git a/lib/et/ChangeLog b/lib/et/ChangeLog index 8fac15669..74d6805fc 100644 --- a/lib/et/ChangeLog +++ b/lib/et/ChangeLog @@ -1,3 +1,7 @@ +2003-12-11 Theodore Ts'o + + * com_err.3: Fix C syntax error pointed out by ESR. + 2003-11-28 Theodore Ts'o * et_c.awk: Add declaration of the Heimdal initialization routine diff --git a/lib/et/com_err.3 b/lib/et/com_err.3 index 6f1c1868a..5a25f09fd 100644 --- a/lib/et/com_err.3 +++ b/lib/et/com_err.3 @@ -7,18 +7,11 @@ com_err \- common error display routine .SH SYNOPSIS .nf #include +void (*\fIproc\fR) (const char *, long, const char *, va_list); .PP -void com_err (whoami, code, format, ...); - const char *whoami; - long code; - const char *format; +void com_err (const char *whoami, long code, const char *format, ...); .PP proc = set_com_err_hook (proc); -.fi -void (* -.I proc -) (const char *, long, const char *, va_list); -.nf .PP proc = reset_com_err_hook (); .PP