aboutsummaryrefslogtreecommitdiffstats
path: root/builtin.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2011-01-04 11:24:04 +0200
committerArnold D. Robbins <arnold@skeeve.com>2011-01-04 11:24:04 +0200
commit72bc84e8200de324ca4d24753bfd5f4773e221f5 (patch)
treed6475110facf23ad52220f134b0872a67281231e /builtin.c
parentfb6fd355f19270e615c178612f640536a1d2345c (diff)
downloadegawk-72bc84e8200de324ca4d24753bfd5f4773e221f5.tar.gz
egawk-72bc84e8200de324ca4d24753bfd5f4773e221f5.tar.bz2
egawk-72bc84e8200de324ca4d24753bfd5f4773e221f5.zip
PC fixes, compiler warning cleanups, autoconf fix.
Diffstat (limited to 'builtin.c')
-rw-r--r--builtin.c4
1 files changed, 2 insertions, 2 deletions
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);