aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1995-05-25 14:30:07 +0000
committerKarl Heuer <[email protected]>1995-05-25 14:30:07 +0000
commitcc04c6790508d629b2056746a631b7131f30b77a (patch)
tree46e9cc5729d69684f4716704a531974d3c7c1c79 /src
parentd99d58630a8f63158cd78c7a5578febcc797fa3a (diff)
(Fcall_interactively): Cast arg of doprnt.
Diffstat (limited to 'src')
-rw-r--r--src/callint.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c
index 3c05d8de93..c58f91b7c1 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)
{