aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-09-11 13:36:43 +0200
committerMattias Andrée <maandree@kth.se>2021-09-11 13:36:43 +0200
commitc8f8816dc56a70633b1212e5b734a5fcafe17307 (patch)
tree0283ced3516926e7bd400a042055321223b47f77
parentImprove libsimple-arg.h for multicall binaries (diff)
downloadlibsimple-c8f8816dc56a70633b1212e5b734a5fcafe17307.tar.gz
libsimple-c8f8816dc56a70633b1212e5b734a5fcafe17307.tar.bz2
libsimple-c8f8816dc56a70633b1212e5b734a5fcafe17307.tar.xz
fix typo
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r--man3/libsimple_vweprintf.316
1 files changed, 8 insertions, 8 deletions
diff --git a/man3/libsimple_vweprintf.3 b/man3/libsimple_vweprintf.3
index 8db6f0a..868b8df 100644
--- a/man3/libsimple_vweprintf.3
+++ b/man3/libsimple_vweprintf.3
@@ -7,8 +7,8 @@ libsimple_vweprintf \- print an error message
#include <libsimple.h>
extern int libsimple_default_failure_exit;
-extern void (*libsimple_eprint_preprint)(void);
-extern void (*libsimple_eprint_postprint)(void);
+extern void (*libsimple_eprintf_preprint)(void);
+extern void (*libsimple_eprintf_postprint)(void);
void libsimple_vweprintf(const char *\fIfmt\fP, va_list \fIap\fP);
static inline void libsimple_weprintf(const char *\fIfmt\fP, ...);
@@ -124,18 +124,18 @@ The
and
.BR libsimple_eprintf ()
functions call
-.I libsimple_eprint_preprint
+.I libsimple_eprintf_preprint
unless it is
.B NULL
before they print the message, after printing
the message they call
-.I libsimple_eprint_postprint
+.I libsimple_eprintf_postprint
unless it is
.BR NULL .
The
-.I libsimple_eprint_preprint
+.I libsimple_eprintf_preprint
and
-.I libsimple_eprint_postprint
+.I libsimple_eprintf_postprint
variables are
.B NULL
byte default.
@@ -149,9 +149,9 @@ may have a different value from when the
or
.BR libsimple_eprintf ()
function called when
-.I libsimple_eprint_preprint
+.I libsimple_eprintf_preprint
or
-.I libsimple_eprint_postprint
+.I libsimple_eprintf_postprint
is called.
.SH RETURN VALUE