diff options
author | Martin Hunt <hunt@redhat.com> | 2008-03-25 14:01:36 -0400 |
---|---|---|
committer | Martin Hunt <hunt@redhat.com> | 2008-03-25 14:01:36 -0400 |
commit | 5280c736a9466cd97f56ebb508be2371aacb1d53 (patch) | |
tree | 258c8866192c607a7fdafde970ea27ca6b4d083d /runtime/transport/control.c | |
parent | a8bfd6f19b6fd8b8091b9123e38c77abdebc2fb9 (diff) | |
download | systemtap-steved-5280c736a9466cd97f56ebb508be2371aacb1d53.tar.gz systemtap-steved-5280c736a9466cd97f56ebb508be2371aacb1d53.tar.xz systemtap-steved-5280c736a9466cd97f56ebb508be2371aacb1d53.zip |
control.c (_stp_ctl_write_dbug): Insert missing break.
Diffstat (limited to 'runtime/transport/control.c')
-rw-r--r-- | runtime/transport/control.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |