diff options
author | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-07-08 18:39:07 +0800 |
---|---|---|
committer | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-08-05 22:55:07 +0800 |
commit | f8c37da731af9f6cd74e7a0ef08fa02059d981ac (patch) | |
tree | 88678c98422ba129ac0b6f602c5832bc9570251b /src/empathy-main-window.c | |
parent | 5cc326f741ab695e4fac8f4c4ccd99cf235115fc (diff) | |
download | gsoc2013-empathy-f8c37da731af9f6cd74e7a0ef08fa02059d981ac.tar gsoc2013-empathy-f8c37da731af9f6cd74e7a0ef08fa02059d981ac.tar.gz gsoc2013-empathy-f8c37da731af9f6cd74e7a0ef08fa02059d981ac.tar.bz2 gsoc2013-empathy-f8c37da731af9f6cd74e7a0ef08fa02059d981ac.tar.lz gsoc2013-empathy-f8c37da731af9f6cd74e7a0ef08fa02059d981ac.tar.xz gsoc2013-empathy-f8c37da731af9f6cd74e7a0ef08fa02059d981ac.tar.zst gsoc2013-empathy-f8c37da731af9f6cd74e7a0ef08fa02059d981ac.zip |
Fix missing entries in switch statements
Added missing default cases and missing enum cases.
Diffstat (limited to 'src/empathy-main-window.c')
-rw-r--r-- | src/empathy-main-window.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c index 4aa38f5f4..73d84ab44 100644 --- a/src/empathy-main-window.c +++ b/src/empathy-main-window.c @@ -1017,6 +1017,9 @@ account_status_changed_cb (TpAccount *account, case TP_CONNECTION_STATUS_CONNECTED: /* We can join the room */ break; + + default: + g_assert_not_reached (); } join_chatroom (ctx->chatroom, ctx->timestamp); |