changed occurence of 'va_list *ap' to 'va_list ap'

This commit is contained in:
Herbert Valerio Riedel 1998-11-26 13:52:01 +00:00
parent 7f8b043a3e
commit 48f8f37b97
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
1998-11-26 Herbert Valerio Riedel <hvr@hvrlab.ml.org>
* gtkedit.c: changed occurence of 'va_list *ap' to 'va_list ap'
Thu Nov 26 12:20:06 1998 Pavel Roskin <pavel_roskin@geocities.com>
* config.h.in: Removed from CVS, added to .cvsignore

View File

@ -831,7 +831,7 @@ char *gtk_edit_dialog_get_load_file (guchar * dir, guchar * def, guchar * title)
void gtk_edit_dialog_message (guchar * heading, char *fmt,...)
{
gchar s[8192];
va_list *ap;
va_list ap;
va_start (ap, fmt);
vsprintf (s, fmt, ap);
va_end (ap);
@ -849,7 +849,7 @@ int gtk_edit_dialog_query (guchar * heading, guchar * first,...)
char *buttons[16];
char s[1024], *r;
int n;
va_list *ap;
va_list ap;
va_start (ap, first);
n = 0;
while ((buttons[n++] = va_arg (ap, char *)) && n < 15);
@ -885,7 +885,7 @@ int gtk_edit_dialog_query (guchar * heading, guchar * first,...)
void gtk_edit_dialog_error (guchar * heading, char *fmt, ...)
{
gchar s[8192];
va_list *ap;
va_list ap;
va_start (ap, fmt);
vsprintf (s, fmt, ap);
va_end (ap);