forked from AuroraMiddleware/gtk
removed sputious va_end(args) that for some reason didn't produce a
Fri May 15 22:31:49 1998 Tim Janik <timj@gtk.org> * gscanner.c (g_scanner_unexp_token): removed sputious va_end(args) that for some reason didn't produce a compiler wrning on my machine (is va_end undefined for i386?).
This commit is contained in:
parent
5ed260f03e
commit
a7c7158c7b
@ -1,3 +1,9 @@
|
||||
Fri May 15 22:31:49 1998 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gscanner.c (g_scanner_unexp_token): removed sputious va_end(args) that
|
||||
for some reason didn't produce a compiler wrning on my machine (is
|
||||
va_end undefined for i386?).
|
||||
|
||||
Fri May 15 12:32:08 1998 rodo <doulik@karlin.mff.cuni.cz>
|
||||
|
||||
* gscanner.c: replaced some snprintf with g_snprintf
|
||||
|
@ -715,7 +715,7 @@ gdouble g_timer_elapsed (GTimer *timer,
|
||||
|
||||
/* Output
|
||||
*/
|
||||
void g_error (const gchar *format, ...) G_GNUC_PRINTF (1, 2) G_GNUC_NORETURN;
|
||||
void g_error (const gchar *format, ...) G_GNUC_PRINTF (1, 2);
|
||||
void g_warning (const gchar *format, ...) G_GNUC_PRINTF (1, 2);
|
||||
void g_message (const gchar *format, ...) G_GNUC_PRINTF (1, 2);
|
||||
void g_print (const gchar *format, ...) G_GNUC_PRINTF (1, 2);
|
||||
|
@ -886,8 +886,6 @@ g_scanner_unexp_token (GScanner *scanner,
|
||||
message);
|
||||
}
|
||||
|
||||
va_end (args);
|
||||
|
||||
g_free (token_string);
|
||||
g_free (expected_string);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user