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
commitcc04c6790508d629b2056746a631b7131f30b77a (patch)
tree46e9cc5729d69684f4716704a531974d3c7c1c79 /src/callint.c
parentd99d58630a8f63158cd78c7a5578febcc797fa3a (diff)
downloademacs-cc04c6790508d629b2056746a631b7131f30b77a.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)
{