From 72bc84e8200de324ca4d24753bfd5f4773e221f5 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Tue, 4 Jan 2011 11:24:04 +0200 Subject: PC fixes, compiler warning cleanups, autoconf fix. --- builtin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'builtin.c') diff --git a/builtin.c b/builtin.c index 209ae5da..7ae109e7 100644 --- a/builtin.c +++ b/builtin.c @@ -2394,13 +2394,13 @@ do_bindtextdomain(int nargs) if (nargs == 2) { /* second argument */ t2 = POP_STRING(); - domain = t2->stptr; + domain = (const char *) t2->stptr; } /* first argument */ t1 = POP_STRING(); if (t1->stlen > 0) - directory = t1->stptr; + directory = (const char *) t1->stptr; the_result = bindtextdomain(domain, directory); -- cgit v1.2.3