summaryrefslogtreecommitdiff
path: root/src/callint.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1995-05-25 14:30:07 +0000
committerKarl Heuer <kwzh@gnu.org>1995-05-25 14:30:07 +0000
commit6efc72fa10d32f21c195f742b3a08e0050e6728f (patch)
tree8d457b8d39ae91cc4c759f84f8be70043a1bcd47 /src/callint.c
parent0ebeb1dc0a830140f9f20476e4c0a0b560846220 (diff)
downloademacs-6efc72fa10d32f21c195f742b3a08e0050e6728f.tar.gz
(Fcall_interactively): Cast arg of doprnt.
Diffstat (limited to 'src/callint.c')
-rw-r--r--src/callint.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c
index 3c05d8de932..c58f91b7c10 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -452,7 +452,8 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
? (unsigned char *) ""
: XSTRING (visargs[j])->data;
- doprnt (prompt, sizeof prompt, prompt1, 0, j - 1, argstrings + 1);
+ doprnt (prompt, sizeof prompt, prompt1, (char *)0,
+ j - 1, argstrings + 1);
switch (*tem)
{