From a6da1910ac73f90544967200b2a23835644fc272 Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Wed, 7 Feb 2001 18:37:25 +0000 Subject: Fix printf fmt of long in remote-sim.c. mn10300-elf now buildable. --- gdb/remote-sim.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gdb/remote-sim.c') diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c index 268f5f7..1976db9 100644 --- a/gdb/remote-sim.c +++ b/gdb/remote-sim.c @@ -129,7 +129,9 @@ dump_mem (char *buf, int len) long l[2]; memcpy (l, buf, len); printf_filtered ("\t0x%lx", l[0]); - printf_filtered (len == 8 ? " 0x%x\n" : "\n", l[1]); + if (len == 8) + printf_filtered (" 0x%lx", l[1]); + printf_filtered ("\n"); } else { -- cgit v1.1