* terminfo.c (tparam): Fix prototype of tparm (followup to 2010-07-25T00:20:51Z!lekkt...
authorJuanma Barranquero <lekktu@gmail.com>
Sun, 25 Jul 2010 19:30:14 +0000 (21:30 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Sun, 25 Jul 2010 19:30:14 +0000 (21:30 +0200)
src/ChangeLog
src/terminfo.c

index 50a9fcb..f099fc3 100644 (file)
@@ -1,3 +1,7 @@
+2010-07-25  Juanma Barranquero  <lekktu@gmail.com>
+
+       * terminfo.c (tparam): Fix prototype of tparm.
+
 2010-07-25  Andreas Schwab  <schwab@linux-m68k.org>
 
        * emacs.c (main) [PROFILING]: Use __executable_start if defined to
index 89d7426..5074949 100644 (file)
@@ -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)