From: Karl Heuer Date: Thu, 25 May 1995 14:30:07 +0000 (+0000) Subject: (Fcall_interactively): Cast arg of doprnt. X-Git-Tag: emacs-19.34~3947 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cc04c6790508d629b2056746a631b7131f30b77a;p=emacs.git (Fcall_interactively): Cast arg of doprnt. --- 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) {