diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | lib/ephy-node.c | 5 |
2 files changed, 11 insertions, 1 deletions
@@ -1,5 +1,12 @@ 2003-07-04 Christian Persch <chpe@cvs.gnome.org> + * lib/ephy-node.c: (callback): + + Use G_VA_COPY macro from glib instead of va_copy, (hopefully) + fixing the va_ problem for good. + +2003-07-04 Christian Persch <chpe@cvs.gnome.org> + * embed/ephy-favicon-cache.c: (favicon_download_completed_cb): Remove the persist object from the hash table before emitting the diff --git a/lib/ephy-node.c b/lib/ephy-node.c index 14b4bb1e4..6b88c352f 100644 --- a/lib/ephy-node.c +++ b/lib/ephy-node.c @@ -18,7 +18,10 @@ * $Id$ */ +#ifdef HAVE_CONFIG_H #include <config.h> +#endif + #include <bonobo/bonobo-i18n.h> #include <stdlib.h> #include <string.h> @@ -126,7 +129,7 @@ callback (long id, EphyNodeSignalData *data, gpointer *dummy) user_data = (ENESCData *) dummy; - va_copy(valist, user_data->valist); + G_VA_COPY(valist, user_data->valist); if (data->type != user_data->type) return; |