mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 01:20:42 -05:00
cogl: correcting the cogl trace log
Remove the extra & symbol appearing in cogl debug log https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1517
This commit is contained in:
parent
9d0bac0754
commit
d504086ebf
@ -94,14 +94,14 @@ unsigned long _cogl_debug_flags[COGL_DEBUG_N_LONGS];
|
||||
#ifdef __GNUC__
|
||||
#define COGL_NOTE(type,x,a...) G_STMT_START { \
|
||||
if (G_UNLIKELY (COGL_DEBUG_ENABLED (COGL_DEBUG_##type))) { \
|
||||
_cogl_profile_trace_message ("[" #type "] " G_STRLOC " & " x, ##a); \
|
||||
_cogl_profile_trace_message ("[" #type "] " G_STRLOC ": " x, ##a); \
|
||||
} } G_STMT_END
|
||||
|
||||
#else
|
||||
#define COGL_NOTE(type,...) G_STMT_START { \
|
||||
if (G_UNLIKELY (COGL_DEBUG_ENABLED (COGL_DEBUG_##type))) { \
|
||||
char *_fmt = g_strdup_printf (__VA_ARGS__); \
|
||||
_cogl_profile_trace_message ("[" #type "] " G_STRLOC " & %s", _fmt);\
|
||||
_cogl_profile_trace_message ("[" #type "] " G_STRLOC ": %s", _fmt);\
|
||||
g_free (_fmt); \
|
||||
} } G_STMT_END
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user