maint: avoid -Werror=unused-macros warning in oldfind

oldfind.c: At top level:
oldfind.c:88:0: error: macro "N_" is not used [-Werror=unused-macros]
 # define N_(String) gettext_noop (String)

cc1: all warnings being treated as errors

* find/oldfind.c (N_): Remove unused macro.
This commit is contained in:
Bernhard Voelker 2017-02-02 00:17:22 +01:00
parent b161a1c6f3
commit f2b49021e7

View File

@ -84,12 +84,6 @@ enum
#define bindtextdomain(Package, Directory)
#define ngettext(singular,plural,n) ((1==n) ? singular : plural)
#endif
#ifdef gettext_noop
# define N_(String) gettext_noop (String)
#else
/* See locate.c for explanation as to why not use (String) */
# define N_(String) String
#endif
#ifdef STAT_MOUNTPOINTS
static void init_mounted_dev_list (int mandatory);