Fix building with profiling enabled

There was an #ifdef'd section of code for profiling that was using the
wrong variable name so it would not build.

Reviewed-by: Emmanuele Bassi <ebassi@linux.intel.com>
This commit is contained in:
Neil Roberts 2011-11-28 16:27:57 +00:00
parent a2774fb0dc
commit c687ece72d

View File

@ -3737,7 +3737,7 @@ _clutter_debug_messagev (const char *format,
#ifdef CLUTTER_ENABLE_PROFILE #ifdef CLUTTER_ENABLE_PROFILE
if (_clutter_uprof_context != NULL) if (_clutter_uprof_context != NULL)
uprof_context_vtrace_message (_clutter_uprof_context, format, args); uprof_context_vtrace_message (_clutter_uprof_context, format, var_args);
#endif #endif
g_free (fmt); g_free (fmt);