From 859a0b20221d7eace7edf46c4e3836053da583cd Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Thu, 7 Jun 2012 14:10:57 -0400 Subject: [PATCH] minor cleanup --- termite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/termite.c b/termite.c index 380f655..a951405 100644 --- a/termite.c +++ b/termite.c @@ -241,7 +241,7 @@ static gboolean position_overlay_cb(GtkBin *overlay, GtkWidget *widget, GdkRecta return TRUE; } -#define IGNORE_ON_ERROR(ERROR) if (ERROR) { g_clear_error(&ERROR); } else +#define IGNORE_ON_ERROR(ERROR) if (ERROR) g_clear_error(&ERROR); else static void load_config(GtkWindow *window, VteTerminal *vte, gboolean *dynamic_title, gboolean *urgent_on_bell) { GError *error = NULL;