diff options
author | Michael Snyder <msnyder@vmware.com> | 2011-02-28 18:10:30 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2011-02-28 18:10:30 +0000 |
commit | 907b7f4fc8621c9ea70b67251fe9ea40617645b6 (patch) | |
tree | 93228cc1d3718c330c54dba85062f409247d4daf /gdb/linux-record.c | |
parent | opcodes/ (diff) | |
download | binutils-gdb-907b7f4fc8621c9ea70b67251fe9ea40617645b6.tar.gz binutils-gdb-907b7f4fc8621c9ea70b67251fe9ea40617645b6.tar.bz2 binutils-gdb-907b7f4fc8621c9ea70b67251fe9ea40617645b6.zip |
2011-02-28 Michael Snyder <msnyder@vmware.com>
* linux-record.c (record_linux_system_call): Add missing
break statement.
Diffstat (limited to 'gdb/linux-record.c')
-rw-r--r-- | gdb/linux-record.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/linux-record.c b/gdb/linux-record.c index 2a5b29edc67..0e37102ab32 100644 --- a/gdb/linux-record.c +++ b/gdb/linux-record.c @@ -770,6 +770,8 @@ Do you want to stop the program?"), if (record_linux_sockaddr (regcache, tdep, tmpulongest, len)) return -1; } + break; + case gdb_sys_recv: { ULONGEST size; |