Add a missing break in record_linux_system_call
This adds a "break" at the end of the RECORD_SYS_RECVFROM case in record_linux_system_call. This seemed correct to me. 2018-05-04 Tom Tromey <tom@tromey.com> * linux-record.c (record_linux_system_call) <case RECORD_SYS_RECVFROM>: Add "break".
This commit is contained in:
parent
15c9ffd697
commit
449b1ac7ad
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2018-05-04 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
|
* linux-record.c (record_linux_system_call) <case
|
||||||
|
RECORD_SYS_RECVFROM>: Add "break".
|
||||||
|
|
||||||
2018-05-04 Tom Tromey <tom@tromey.com>
|
2018-05-04 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
* mi/mi-main.c (mi_cmd_trace_frame_collected) <REGISTERS_FORMAT>:
|
* mi/mi-main.c (mi_cmd_trace_frame_collected) <REGISTERS_FORMAT>:
|
||||||
|
|
|
@ -881,6 +881,7 @@ Do you want to stop the program?"),
|
||||||
if (record_linux_sockaddr (regcache, tdep, tmpulongest, len))
|
if (record_linux_sockaddr (regcache, tdep, tmpulongest, len))
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
case RECORD_SYS_RECV:
|
case RECORD_SYS_RECV:
|
||||||
regcache_raw_read_unsigned (regcache, tdep->arg2,
|
regcache_raw_read_unsigned (regcache, tdep->arg2,
|
||||||
&tmpulongest);
|
&tmpulongest);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue