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:
Philipp Kloke 2013-03-31 12:00:09 +02:00 committed by Cyrill Gorcunov
parent c51a224ceb
commit 91a2f99346

View file

@ -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)