diff options
author | H. Peter Anvin (Intel) <hpa@zytor.com> | 2019-08-09 12:27:29 -0700 |
---|---|---|
committer | H. Peter Anvin (Intel) <hpa@zytor.com> | 2019-08-09 12:27:29 -0700 |
commit | 2503cc09a2f749669609e5c2b3a744426720acd1 (patch) | |
tree | 4f05eaed1ef126e28a2de2dc3a9450602af1953a /include | |
parent | d6e817751e1a809a4e635bbe7ece7e059cbe5f63 (diff) | |
download | nasm-2503cc09a2f749669609e5c2b3a744426720acd1.tar.gz nasm-2503cc09a2f749669609e5c2b3a744426720acd1.tar.xz nasm-2503cc09a2f749669609e5c2b3a744426720acd1.zip |
error.h: fix typo: nasm_intof -> nasm_infof
BR 3302593: nasm_infof() prototype misspelled as nasm_intof().
Reported-by: <pushbx@38.de>
Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/error.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/error.h b/include/error.h index 85fcbe06..fde99e01 100644 --- a/include/error.h +++ b/include/error.h @@ -59,7 +59,7 @@ void printf_func(2, 3) nasm_listmsgf(errflags flags, const char *fmt, ...); void printf_func(1, 2) nasm_debug(const char *fmt, ...); void printf_func(2, 3) nasm_debugf(errflags flags, const char *fmt, ...); void printf_func(1, 2) nasm_info(const char *fmt, ...); -void printf_func(2, 3) nasm_intof(errflags flags, const char *fmt, ...); +void printf_func(2, 3) nasm_infof(errflags flags, const char *fmt, ...); void printf_func(2, 3) nasm_warn(errflags flags, const char *fmt, ...); void printf_func(1, 2) nasm_nonfatal(const char *fmt, ...); void printf_func(2, 3) nasm_nonfatalf(errflags flags, const char *fmt, ...); |