From 63624f91954534232279c67c10b79634f1884114 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 1 Feb 2010 01:40:19 +0100 Subject: Fix segfault on gui init with newer clutter version --- src/gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/gui.c b/src/gui.c index 6538e79..910e8dc 100644 --- a/src/gui.c +++ b/src/gui.c @@ -1283,7 +1283,7 @@ GtkWidget *gui_init() } /* Create device type widget */ - type_label = clutter_text_new_full(CLOCK_FONT, NULL, &clock_text_color); + type_label = clutter_text_new_full(CLOCK_FONT, "", &clock_text_color); clutter_group_add(CLUTTER_GROUP(stage), type_label); clutter_actor_set_position(type_label, 3.0, 2.0); -- cgit v1.1-32-gdbae