From 91a2f99346212684c2c87df835fc0791dcc9ad96 Mon Sep 17 00:00:00 2001 From: Philipp Kloke Date: Sun, 31 Mar 2013 12:00:09 +0200 Subject: [PATCH] Fixed wrong format specifier in format string Signed-off-by: Philipp Kloke Signed-off-by: Cyrill Gorcunov --- output/outdbg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/output/outdbg.c b/output/outdbg.c index 675af83e..2b750396 100644 --- a/output/outdbg.c +++ b/output/outdbg.c @@ -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) -- 2.11.4.GIT