From da31e629b630248e9e89a00516a6f8c0572abee8 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Sun, 25 Jul 2010 21:30:14 +0200 Subject: [PATCH] * terminfo.c (tparam): Fix prototype of tparm (followup to 2010-07-25T00:20:51Z!lekktu@gmail.com). --- src/ChangeLog | 4 ++++ src/terminfo.c | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 50a9fcb8ba8..f099fc3437d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2010-07-25 Juanma Barranquero + + * terminfo.c (tparam): Fix prototype of tparm. + 2010-07-25 Andreas Schwab * emacs.c (main) [PROFILING]: Use __executable_start if defined to diff --git a/src/terminfo.c b/src/terminfo.c index 89d7426e8f4..50749492cfe 100644 --- a/src/terminfo.c +++ b/src/terminfo.c @@ -35,10 +35,12 @@ char *UP, *BC, PC; */ char * -tparam (char *string, char *outstring, int len, int arg1, int arg2, int arg3, int arg4, int arg5, int arg6, int arg7, int arg8, int arg9) +tparam (char *string, char *outstring, + int len, int arg1, int arg2, int arg3, int arg4, + int arg5, int arg6, int arg7, int arg8, int arg9) { char *temp; - extern char *tparm(/* ??? */); + extern char *tparm (char *str, ...); temp = tparm (string, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); if (outstring == 0) -- 2.39.2