This is the mail archive of the
binutils@sources.redhat.com
mailing list for the binutils project.
[PATCH] rda - add break to switch.
- From: Michael Snyder <msnyder at redhat dot com>
- To: gdb-patches at sources dot redhat dot com, gcc-patches at gcc dot gnu dot org, binutils at sources dot redhat dot com, cagney at gnu dot org
- Date: Fri, 09 Jul 2004 19:35:28 +0000
- Subject: [PATCH] rda - add break to switch.
- Organization: Red Hat, Inc.
Obvious, quiets a compiler warning.
2004-07-09 Michael Snyder <msnyder@redhat.com>
* lib/gdbserv-state.c (gdbserv_fromclient_break): Add break
statement to default.
Index: gdbserv-state.c
===================================================================
RCS file: /cvs/cvsfiles/devo/rda/lib/gdbserv-state.c,v
retrieving revision 1.31
diff -p -r1.31 gdbserv-state.c
*** gdbserv-state.c 31 Oct 2003 17:41:21 -0000 1.31
--- gdbserv-state.c 9 Jul 2004 19:22:58 -0000
*************** gdbserv_fromclient_break (struct gdbserv
*** 165,170 ****
--- 165,171 ----
same time as it stops itself */
break;
default:
+ break;
}
}