mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-04-22 14:46:57 -04:00
common.h: added guard to avoid warning when ENABLE_NLS is not defined
This commit is contained in:
parent
bccb38dc9d
commit
5ede691890
1 changed files with 1 additions and 1 deletions
|
|
@ -193,7 +193,7 @@ enum {
|
|||
*/
|
||||
#include "../gl/gettext.h"
|
||||
#define _(String) gettext(String)
|
||||
#if !ENABLE_NLS
|
||||
#if !defined(ENABLE_NLS) || !ENABLE_NLS
|
||||
# undef textdomain
|
||||
# define textdomain(Domainname) /* empty */
|
||||
# undef bindtextdomain
|
||||
|
|
|
|||
Loading…
Reference in a new issue