From: Dave Love Date: Tue, 30 Jul 2002 11:37:36 +0000 (+0000) Subject: (tparam): Declare an arg. Use P_ to declare tparm. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~494 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e5da031c495a7a9ef8c5d43b603ceff1d1288f43;p=emacs.git (tparam): Declare an arg. Use P_ to declare tparm. --- diff --git a/src/terminfo.c b/src/terminfo.c index 17ce16dabd6..1643b641f6d 100644 --- a/src/terminfo.c +++ b/src/terminfo.c @@ -38,10 +38,10 @@ char * tparam (string, outstring, len, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) char *string; char *outstring; - int arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9; + int len, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9; { char *temp; - extern char *tparm(); + extern char *tparm P_((const char *, ...)); temp = tparm (string, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); if (outstring == 0)