summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabiano FidĂȘncio <fidencio@redhat.com>2014-09-01 13:45:49 +0200
committerFabiano FidĂȘncio <fidencio@redhat.com>2014-09-12 18:00:30 +0200
commit4bf5fd35c4ece8a9100e5cec18b4b75fbaf82d35 (patch)
treefc2799844143d448f51aa03659723f1e8d3ebc05
parent08b3e1d8f187fb371d9ade2f69670378e3e409f5 (diff)
Fix -Wswitch
-rw-r--r--server/tests/test_display_base.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/tests/test_display_base.c b/server/tests/test_display_base.c
index bdac6807..b197d1bb 100644
--- a/server/tests/test_display_base.c
+++ b/server/tests/test_display_base.c
@@ -551,6 +551,8 @@ static void produce_command(Test *test)
update = test_spice_create_update_solid(command->solid.surface_id,
command->solid.bbox, command->solid.color);
break;
+ default: /* Just to shut up GCC warning (-Wswitch) */
+ break;
}
push_command(&update->ext);
break;