diff options
author | Michael Snyder <msnyder@vmware.com> | 2007-07-31 22:01:03 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2007-07-31 22:01:03 +0000 |
commit | 40742ab60acd9f4e347ee28d7087348b8b6c9912 (patch) | |
tree | ebdd02c04726064b92c77d6899fab135bb9b2d84 /gdb/event-top.c | |
parent | 7c6e0d4812e589c911fd4d5f6c336f56f8ef2686 (diff) | |
download | gdb-40742ab60acd9f4e347ee28d7087348b8b6c9912.zip gdb-40742ab60acd9f4e347ee28d7087348b8b6c9912.tar.gz gdb-40742ab60acd9f4e347ee28d7087348b8b6c9912.tar.bz2 |
2007-07-31 Michael Snyder <msnyder@access-company.com>
* event-top.c (command_line_handler): Add pedantic return.
Diffstat (limited to 'gdb/event-top.c')
-rw-r--r-- | gdb/event-top.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/event-top.c b/gdb/event-top.c index eecff5a..b9124ec 100644 --- a/gdb/event-top.c +++ b/gdb/event-top.c @@ -673,6 +673,7 @@ command_line_handler (char *rl) { got_eof = 1; command_handler (0); + return; /* Lint. */ } if (strlen (rl) + 1 + (p - linebuffer) > linelength) { |