]> Dogcows Code - chaz/openbox/commitdiff
Fix g_slice_new0 call
authorMikael Magnusson <mikachu@gmail.com>
Thu, 14 Oct 2010 13:58:03 +0000 (15:58 +0200)
committerMikael Magnusson <mikachu@gmail.com>
Thu, 14 Oct 2010 13:58:41 +0000 (15:58 +0200)
obrender/theme.c

index c29550b84f6273bb650b5c483786e4ffa5dc9512..3ab2fd4ce9259c9aba03c7f36323bec0d23988cc 100644 (file)
@@ -167,7 +167,7 @@ RrTheme* RrThemeNew(const RrInstance *inst, const gchar *name,
     a_unfocused_pressed_tmp = RrAppearanceNew(inst, 1);
 
     /* initialize theme */
-    theme = g_slice_new0(RrTheme, 1);
+    theme = g_slice_new0(RrTheme);
 
     theme->inst = inst;
     theme->name = g_strdup(name ? name : DEFAULT_THEME);
This page took 0.020934 seconds and 4 git commands to generate.