From 1a3f3d2b4add3d339e1128206dd8d92182bc899d Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Fri, 20 Jul 2012 11:41:44 -0400 Subject: [PATCH] silence clang warning --- termite.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/termite.cc b/termite.cc index f42ffe9..2bc8890 100644 --- a/termite.cc +++ b/termite.cc @@ -692,7 +692,7 @@ int main(int argc, char **argv) { {"geometry", 0, 0, G_OPTION_ARG_STRING, &geometry, "Window geometry", "GEOMETRY"}, {"exec", 'e', 0, G_OPTION_ARG_STRING, &execute, "Command to execute", "COMMAND"}, {"version", 'v', 0, G_OPTION_ARG_NONE, &version, "Version info", NULL}, - {NULL} + {} }; g_option_context_add_main_entries(context, entries, NULL); g_option_context_add_group(context, gtk_get_option_group(TRUE));