diff options
author | Mattias Andrée <maandree@kth.se> | 2021-09-11 13:36:43 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-09-11 13:36:43 +0200 |
commit | c8f8816dc56a70633b1212e5b734a5fcafe17307 (patch) | |
tree | 0283ced3516926e7bd400a042055321223b47f77 /man3 | |
parent | Improve libsimple-arg.h for multicall binaries (diff) | |
download | libsimple-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 'man3')
-rw-r--r-- | man3/libsimple_vweprintf.3 | 16 |
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 |