Bob -> fix, might be correct

master
Pentium44 2021-04-15 23:03:13 -07:00
parent 0ff090d190
commit 572206aeb9
1 changed files with 6 additions and 6 deletions

View File

@ -71,7 +71,7 @@ V_FUNC init_tty (NO_PARAM)
V_FUNC eprintf (s,a,b,c,d,e,f,g,h,i,j)
char *s; /* format string */
int a,b,c,d,e,f,g,h,i,j; /* dummy arguments */
long a,b,c,d,e,f,g,h,i,j; /* dummy arguments */
{
fflush (stdout); /* flush standard output stream */
@ -98,7 +98,7 @@ int a,b,c,d,e,f,g,h,i,j; /* dummy arguments */
V_FUNC eprintf2 (s,a,b,c,d,e,f,g,h,i,j)
char *s; /* format string */
int a,b,c,d,e,f,g,h,i,j; /* dummy arguments */
long a,b,c,d,e,f,g,h,i,j; /* dummy arguments */
{
fflush (stdout); /* flush standard output stream */
@ -150,7 +150,7 @@ MODPRIV V_FUNC z_msg(t_flag,pf,s,a,b,c,d,e,f,g,h,i,j)
int t_flag; /* terminate-caller flag */
char *pf; /* prefix pointer (or NULL) */
char *s; /* format string */
int a,b,c,d,e,f,g,h,i,j; /* dummy arguments */
long a,b,c,d,e,f,g,h,i,j; /* dummy arguments */
{
if ((pf != NULLCP) && (*pf != CH_EOS)) eprintf2 ("%s",pf);
eprintf2 (s,a,b,c,d,e,f,g,h,i,j);
@ -175,7 +175,7 @@ int a,b,c,d,e,f,g,h,i,j; /* dummy arguments */
V_FUNC x_warn(s,a,b,c,d,e,f,g,h,i,j)
char *s; /* format string */
int a,b,c,d,e,f,g,h,i,j; /* dummy arguments */
long a,b,c,d,e,f,g,h,i,j; /* dummy arguments */
{
z_msg (FALSE, "Warning: ", s,a,b,c,d,e,f,g,h,i,j);
}
@ -197,7 +197,7 @@ int a,b,c,d,e,f,g,h,i,j; /* dummy arguments */
V_FUNC x_error(s,a,b,c,d,e,f,g,h,i,j)
char *s; /* format string */
int a,b,c,d,e,f,g,h,i,j; /* dummy arguments */
long a,b,c,d,e,f,g,h,i,j; /* dummy arguments */
{
z_msg (TRUE, "Error: ", s,a,b,c,d,e,f,g,h,i,j);
}
@ -222,7 +222,7 @@ int a,b,c,d,e,f,g,h,i,j; /* dummy arguments */
V_FUNC x_panic (s,a,b,c,d,e,f,g,h,i,j)
char *s; /* format string */
int a,b,c,d,e,f,g,h,i,j; /* dummy arguments */
long a,b,c,d,e,f,g,h,i,j; /* dummy arguments */
{
z_msg (TRUE, "Internal error: ",
s,a,b,c,d,e,f,g,h,i,j);