diff --git a/ChangeLog b/ChangeLog index 184805f80b..b6d2a56ab1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-12-01 Robert Love + + * gnome/applet/main.c, gnome/vpn-properties/nm-vpn-properties.c: We + need a NULL for the '...' parameter, too, to fill the so-called + sentinel. + 2005-12-01 Robert Love * src/NetworkManagerSystem.c: If iface_to_rtnl_link() returns NULL, the diff --git a/gnome/applet/main.c b/gnome/applet/main.c index 8d36304466..d3d23336c8 100644 --- a/gnome/applet/main.c +++ b/gnome/applet/main.c @@ -49,7 +49,7 @@ int main (int argc, char *argv[]) gnome_program_init ("nm-applet", VERSION, LIBGNOMEUI_MODULE, argc, argv, - GNOME_PARAM_NONE); + GNOME_PARAM_NONE, GNOME_PARAM_NONE); client = gnome_master_client (); gnome_client_set_restart_style (client, GNOME_RESTART_IMMEDIATELY); diff --git a/gnome/vpn-properties/nm-vpn-properties.c b/gnome/vpn-properties/nm-vpn-properties.c index e79fc4e4f5..07dd0a86eb 100644 --- a/gnome/vpn-properties/nm-vpn-properties.c +++ b/gnome/vpn-properties/nm-vpn-properties.c @@ -1120,7 +1120,7 @@ main (int argc, char *argv[]) } gnome_program_init (GETTEXT_PACKAGE, VERSION, LIBGNOMEUI_MODULE, argc, argv, - GNOME_PARAM_NONE); + GNOME_PARAM_NONE, GNOME_PARAM_NONE); glade_gnome_init ();