From a37ec4bd34f549ac7c3614616940f2aef2de1ff1 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sun, 18 Mar 2012 03:07:31 -0400 Subject: [PATCH] script-parser: Fix build --- clutter/clutter-script-parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clutter/clutter-script-parser.c b/clutter/clutter-script-parser.c index e410997b6..1cefae529 100644 --- a/clutter/clutter-script-parser.c +++ b/clutter/clutter-script-parser.c @@ -1128,7 +1128,7 @@ _clutter_script_parse_translatable_string (ClutterScript *script, if (translatable) { if (context != NULL && *context != '\0') - res = g_dpgettext2 (domain, context, string) + res = g_dpgettext2 (domain, context, string); else res = g_dgettext (domain, string); }