From 625a38f60575cb30678e6cfbbb9af78d03d96d83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 15 Feb 2015 10:17:12 +0100 Subject: [PATCH] shell: Shut up a compiler warning --- src/shell-generic-container.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell-generic-container.c b/src/shell-generic-container.c index 7bca9c776..fbeeae995 100644 --- a/src/shell-generic-container.c +++ b/src/shell-generic-container.c @@ -225,7 +225,7 @@ shell_generic_container_set_skip_paint (ShellGenericContainer *self, gboolean currently_skipping; currently_skipping = g_hash_table_lookup (self->priv->skip_paint, child) != NULL; - if (!!skip == currently_skipping) + if ((!!skip) == currently_skipping) return; if (!skip)