Commit 87d5caa0 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

modules: Fix an unused arg if NLS is not enabled.

parent b8f9b369
......@@ -42,6 +42,8 @@ static const char *mdgettext (const char *domain, const char *msg)
#ifdef ENABLE_NLS
if (*msg) /* Do not translate ""! */
return dgettext (domain, msg);
#else
VLC_UNUSED(domain);
#endif
return msg;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment