Fix build-breaking typo in the GUI test suite

Fix after afe1816996.

See #17400.
This commit is contained in:
Vadim Zeitlin
2019-11-01 00:53:12 +01:00
parent 4df94771da
commit e376e74210

View File

@@ -493,7 +493,7 @@ wxTestGLogHandler(const gchar* domain,
// Check if debug messages in this domain will be logged. // Check if debug messages in this domain will be logged.
if ( level == G_LOG_LEVEL_DEBUG ) if ( level == G_LOG_LEVEL_DEBUG )
{ {
static consr char* const allowed = getenv("G_MESSAGES_DEBUG"); static const char* const allowed = getenv("G_MESSAGES_DEBUG");
// By default debug messages are dropped, but if G_MESSAGES_DEBUG is // By default debug messages are dropped, but if G_MESSAGES_DEBUG is
// defined, they're logged for the domains specified in it and if it // defined, they're logged for the domains specified in it and if it