mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-13 17:57:12 +08:00
Fixed wrong format specifier in format string
Signed-off-by: Philipp Kloke <philipp.kloke@web.de> Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
c51a224ceb
commit
91a2f99346
@ -172,8 +172,8 @@ static void dbg_out(int32_t segto, const void *data,
|
||||
|
||||
static void dbg_sectalign(int32_t seg, unsigned int value)
|
||||
{
|
||||
fprintf(ofile, "set alignment (%d) for segment (%d)\n",
|
||||
seg, value);
|
||||
fprintf(ofile, "set alignment (%d) for segment (%u)\n",
|
||||
seg, value);
|
||||
}
|
||||
|
||||
static int32_t dbg_segbase(int32_t segment)
|
||||
|
Loading…
x
Reference in New Issue
Block a user