Codebase list policykit-1-gnome / 3bd2523
Fix warnings with gcc 4.6 Signed-off-by: David Zeuthen <davidz@redhat.com> David Zeuthen 13 years ago
2 changed file(s) with 2 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
3535 /* the session we are servicing */
3636 static PolkitSubject *session = NULL;
3737
38 static GDBusConnection *session_bus_connection = NULL;
39
3840 int
3941 main (int argc, char **argv)
4042 {
4244 GMainLoop *loop;
4345 PolkitAgentListener *listener;
4446 GError *error;
45 GDBusConnection *session_bus_connection;
4647
4748 g_type_init ();
4849 gtk_init (&argc, &argv);
6767 static void
6868 polkit_gnome_listener_finalize (GObject *object)
6969 {
70 PolkitGnomeListener *listener;
71
72 listener = POLKIT_GNOME_LISTENER (object);
73
7470 if (G_OBJECT_CLASS (polkit_gnome_listener_parent_class)->finalize != NULL)
7571 G_OBJECT_CLASS (polkit_gnome_listener_parent_class)->finalize (object);
7672 }