[Telepathy-commits] [telepathy-glib/master] tp_cm_param_setter_offset: add missing switch breaks

Guillaume Desmottes guillaume.desmottes at collabora.co.uk
Thu Mar 26 06:20:11 PDT 2009


---
 telepathy-glib/base-connection-manager.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/telepathy-glib/base-connection-manager.c b/telepathy-glib/base-connection-manager.c
index f143cfb..3fb8f2e 100644
--- a/telepathy-glib/base-connection-manager.c
+++ b/telepathy-glib/base-connection-manager.c
@@ -522,6 +522,7 @@ tp_cm_param_setter_offset (const TpCMParamSpec *paramspec,
           *save_to = i;
           DEBUG ("%s = %" G_GINT64_FORMAT, paramspec->name, i);
         }
+        break;
 
       case DBUS_TYPE_UINT64:
         {
@@ -532,6 +533,7 @@ tp_cm_param_setter_offset (const TpCMParamSpec *paramspec,
           *save_to = i;
           DEBUG ("%s = %" G_GUINT64_FORMAT, paramspec->name, i);
         }
+        break;
 
       case DBUS_TYPE_DOUBLE:
         {
@@ -542,6 +544,7 @@ tp_cm_param_setter_offset (const TpCMParamSpec *paramspec,
           *save_to = i;
           DEBUG ("%s = %f", paramspec->name, i);
         }
+        break;
 
       case DBUS_TYPE_OBJECT_PATH:
         {
@@ -553,6 +556,7 @@ tp_cm_param_setter_offset (const TpCMParamSpec *paramspec,
           *save_to = g_value_dup_boxed (value);
           DEBUG ("%s = \"%s\"", paramspec->name, *save_to);
         }
+        break;
 
       case DBUS_TYPE_BOOLEAN:
         {
-- 
1.5.6.5




More information about the telepathy-commits mailing list