From 86ecb024a4305ac36cf684042b285a9fe0394e76 Mon Sep 17 00:00:00 2001 From: Simon Gomizelj Date: Tue, 19 Jun 2012 18:55:56 -0400 Subject: [PATCH] Forgot to initialize variable --- termite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/termite.c b/termite.c index d04a7c2..236f044 100644 --- a/termite.c +++ b/termite.c @@ -449,7 +449,7 @@ int main(int argc, char **argv) { GError *error = NULL; const char *term = "vte-256color"; gboolean dynamic_title = FALSE, urgent_on_bell = FALSE, clickable_url = FALSE; - gboolean version; + gboolean version = FALSE; GOptionContext *context = g_option_context_new(NULL); char *role = NULL, *geometry = NULL, *execute = NULL;