summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiovanni Campagna <gcampagna@src.gnome.org>2012-07-07 16:49:18 -0400
committerRay Strode <rstrode@redhat.com>2012-07-13 15:21:45 -0400
commitd7aa0299a82bb7d129afd3dda92b91b3654fff0b (patch)
treee6109fb5ca201b88782403f26df514005e3f8ed3
parent3ab1bff9d5d50dbaa1d4433bc85e309d15d025da (diff)
downloadgdm-d7aa0299a82bb7d129afd3dda92b91b3654fff0b.tar.gz
daemon: s/g_atexit/atexit/
g_atexit is deprecated. For now replace the g_atexit call with a normal atexit call.
-rw-r--r--daemon/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/main.c b/daemon/main.c
index cba7cc29..ea345336 100644
--- a/daemon/main.c
+++ b/daemon/main.c
@@ -253,7 +253,7 @@ write_pid (void)
return;
}
- g_atexit (delete_pid);
+ atexit (delete_pid);
}
static void