From cd0afb06b414344410c5f3b3df05cc7373474579 Mon Sep 17 00:00:00 2001 From: monsta Date: Wed, 13 Jan 2016 15:17:05 +0300 Subject: common: don't return a value from void function (GTK+3 build only) --- capplets/common/theme-thumbnail.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/capplets/common/theme-thumbnail.c b/capplets/common/theme-thumbnail.c index ea371482..f5417ca1 100644 --- a/capplets/common/theme-thumbnail.c +++ b/capplets/common/theme-thumbnail.c @@ -145,9 +145,7 @@ static GdkPixmap* draw_window_on_pixbuf(GtkWidget* widget) gtk_widget_hide(widget); -#if GTK_CHECK_VERSION (3, 0, 0) - return pixbuf; -#else +#if !GTK_CHECK_VERSION (3, 0, 0) return pixmap; #endif } -- cgit v1.2.1