From cc04c6790508d629b2056746a631b7131f30b77a Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 25 May 1995 14:30:07 +0000 Subject: [PATCH] (Fcall_interactively): Cast arg of doprnt. --- src/callint.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) { -- 2.39.2