diff --git a/sim/msp430/ChangeLog b/sim/msp430/ChangeLog index a5c5fec258..0a3da7dc49 100644 --- a/sim/msp430/ChangeLog +++ b/sim/msp430/ChangeLog @@ -1,3 +1,8 @@ +2014-03-10 Mike Frysinger + + * msp430-sim (maybe_perform_syscall): Change %d to %ld. + (msp430_step_once): Cast fprintf to fprintf_ftype. + 2013-09-23 Alan Modra * aclocal.m4, configure: Regenerate. diff --git a/sim/msp430/msp430-sim.c b/sim/msp430/msp430-sim.c index 8cd2e1e144..c3fa4a9621 100644 --- a/sim/msp430/msp430-sim.c +++ b/sim/msp430/msp430-sim.c @@ -895,7 +895,7 @@ maybe_perform_syscall (SIM_DESC sd, int call_addr) if (TRACE_SYSCALL_P (MSP430_CPU (sd))) trace_generic (sd, MSP430_CPU (sd), TRACE_SYSCALL_IDX, - "returns %d", sc.result); + "returns %ld", sc.result); MSP430_CPU (sd)->state.regs[12] = sc.result; return 1; @@ -982,7 +982,7 @@ msp430_step_once (SIM_DESC sd) sim_core_read_buffer (sd, MSP430_CPU (sd), 0, b, opcode_pc, opsize); - init_disassemble_info (&info, stderr, fprintf); + init_disassemble_info (&info, stderr, (fprintf_ftype) fprintf); info.private_data = sd; info.read_memory_func = msp430_dis_read; fprintf (stderr, "%#8x ", opcode_pc);