From 87a2030a435cb7f88aa0a34833112f72f7be01d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Klime=C5=A1?= Date: Tue, 17 Jan 2012 16:18:43 +0100 Subject: [PATCH] core: fix translations - use NULL instead of "" (else odd translation appears) --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index ec15865e11..f462812a4a 100644 --- a/src/main.c +++ b/src/main.c @@ -395,7 +395,7 @@ main (int argc, char *argv[]) textdomain (GETTEXT_PACKAGE); /* Parse options */ - opt_ctx = g_option_context_new (""); + opt_ctx = g_option_context_new (NULL); g_option_context_set_translation_domain (opt_ctx, GETTEXT_PACKAGE); g_option_context_set_ignore_unknown_options (opt_ctx, FALSE); g_option_context_set_help_enabled (opt_ctx, TRUE);