script-parser: Fix build

This commit is contained in:
Jasper St. Pierre 2012-03-18 03:07:31 -04:00
parent 4da8001cac
commit a37ec4bd34

View File

@ -1128,7 +1128,7 @@ _clutter_script_parse_translatable_string (ClutterScript *script,
if (translatable) if (translatable)
{ {
if (context != NULL && *context != '\0') if (context != NULL && *context != '\0')
res = g_dpgettext2 (domain, context, string) res = g_dpgettext2 (domain, context, string);
else else
res = g_dgettext (domain, string); res = g_dgettext (domain, string);
} }