[Nasm-bugs] [Bug 3392593] New: nasm git commit d66927a677f75d3c3f5e835054f19f80b4b27179 error

noreply-nasm at gorcunov.org noreply-nasm at gorcunov.org
Fri Aug 9 11:58:57 PDT 2019


https://bugzilla.nasm.us/show_bug.cgi?id=3392593

            Bug ID: 3392593
           Summary: nasm git commit
                    d66927a677f75d3c3f5e835054f19f80b4b27179 error
           Product: NASM
           Version: 2.15 (development)
          Hardware: All
                OS: All
            Status: OPEN
          Severity: blocker
          Priority: Medium
         Component: Assembler
          Assignee: nobody at nasm.us
          Reporter: pushbx at 38.de
                CC: chang.seok.bae at intel.com, gorcunov at gmail.com,
                    hpa at zytor.com, nasm-bugs at nasm.us
     Obtained from: Built from git using configure

One usage that should be "nasm_infof" reads "nasm_intof" incorrectly. This
patch fixes the error and allows building:

$ git diff include
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, ...);
$

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.


More information about the Nasm-bugs mailing list