diff options
-rw-r--r-- | runtime/transport/ChangeLog | 3 | ||||
-rw-r--r-- | runtime/transport/control.c | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/runtime/transport/ChangeLog b/runtime/transport/ChangeLog index 9fea0dd4..2db40a12 100644 --- a/runtime/transport/ChangeLog +++ b/runtime/transport/ChangeLog @@ -1,4 +1,7 @@ 2008-03-25 Martin Hunt <hunt@redhat.com> + + * control.c (_stp_ctl_write_dbug): Insert missing break. + 32-bit systems can't do 64-bit get_user(), so * symbols.c (_stp_do_unwind_data): Change unwind_len to a u32. * transport_msgs.h (struct _stp_msg_unwind): Ditto. diff --git a/runtime/transport/control.c b/runtime/transport/control.c index ed7725fa..92334b9c 100644 --- a/runtime/transport/control.c +++ b/runtime/transport/control.c @@ -106,6 +106,7 @@ static void _stp_ctl_write_dbug(int type, void *data, int len) case STP_UNWIND: snprintf(buf, sizeof(buf), "%s", (char *)data); _dbug("sending STP_UNWIND %s [len=%d]\n", buf, len); + break; default: _dbug("ERROR: unknown message type: %d\n", type); break; |