mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2026-08-27 00:26:02 -04:00
Fix missing int argument warning
This warning (per -Werror) breaks the build using a recent GCC with recent userland. Approved-By: Tom Tromey <tom@tromey.com>
This commit is contained in:
parent
7f01be510b
commit
9385922d3f
1 changed files with 1 additions and 1 deletions
|
|
@ -1712,7 +1712,7 @@ sim_resume (SIM_DESC sd, int step, int siggnal)
|
|||
register int endianw = global_endianw;
|
||||
|
||||
int tick_start = get_now ();
|
||||
void (*prev_fpe) ();
|
||||
void (*prev_fpe) (int);
|
||||
|
||||
register unsigned short *jump_table = sh_jump_table;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue