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:
parent
87ce1b21f9
commit
b2d05f32c2
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue