profile: use atexit not g_atexit

g_atexit has been deprecated so we simply use atexit instead now.

Reviewed-by: Neil Roberts <neil@linux.intel.com>
This commit is contained in:
Robert Bragg 2012-01-16 20:52:50 +00:00
parent 87ce1b21f9
commit b2d05f32c2

View File

@ -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