Remove compiler warning when NLS is disabled

This commit is contained in:
Sebastien Helleu 2009-08-30 16:04:28 +02:00
parent d2ec2482d6
commit 6b9cb34a09

View File

@ -88,6 +88,10 @@ plugin_api_gettext (const char *string)
const char *
plugin_api_ngettext (const char *single, const char *plural, int count)
{
/* make C compiler happy */
(void) single;
(void) count;
return NG_(single, plural, count);
}