From 452ee39de180c5c77f2f264d38a7c4d5925c1099 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Sat, 21 Dec 2013 18:04:41 +1000 Subject: Fix build warnings with --disable-nls The gettext functions return a "char *", so do the same for the defines in the case where gettext is unavailable. This prevents a number of warnings about const being dropped. Signed-off-by: Allan McRae --- lib/libalpm/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libalpm/util.h') diff --git a/lib/libalpm/util.h b/lib/libalpm/util.h index c12b39b7..2142171c 100644 --- a/lib/libalpm/util.h +++ b/lib/libalpm/util.h @@ -47,7 +47,7 @@ /* define _() as shortcut for gettext() */ #define _(str) dgettext ("libalpm", str) #else -#define _(s) s +#define _(s) (char *)s #endif void _alpm_alloc_fail(size_t size); -- cgit v1.2.3-24-g4f1b