From b2d05f32c26e19170a81ebc27d4735edc294ad27 Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Mon, 16 Jan 2012 20:52:50 +0000 Subject: [PATCH] profile: use atexit not g_atexit g_atexit has been deprecated so we simply use atexit instead now. Reviewed-by: Neil Roberts --- cogl/cogl-profile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogl/cogl-profile.c b/cogl/cogl-profile.c index ba140b25e..c06d8a577 100644 --- a/cogl/cogl-profile.c +++ b/cogl/cogl-profile.c @@ -65,7 +65,7 @@ _cogl_uprof_init (void) #include "cogl-debug-options.h" #undef OPT - g_atexit (print_exit_report); + atexit (print_exit_report); } void