From b333bd87f706e4a68d2366d228d5a63fef49912a Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Thu, 17 May 2007 12:03:31 +0000 Subject: [PATCH] Hush compiler warning When forcing a call to clutter_actor_get_type() to cache the result, ignore the returned value and hush a compiler warning. --- clutter/clutter-main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clutter/clutter-main.c b/clutter/clutter-main.c index 44c8a1849..00cf88a1e 100644 --- a/clutter/clutter-main.c +++ b/clutter/clutter-main.c @@ -654,6 +654,6 @@ clutter_base_init (void) /* initialise GLib type system */ g_type_init (); - clutter_actor_get_type (); + (void) clutter_actor_get_type (); } }