regressed by bug 235562. ``` #define LOG_WITH_LEVEL(channel, level, ...) do { \ if (LOG_CHANNEL(channel).state != logChannelStateOff && channel->level >= (level)) \ WTFLogWithLevel(&LOG_CHANNEL(channel), level, __VA_ARGS__); \ } while (0) ``` the macro is attempting to dereference `channel` ; but it's not a pointer.
<rdar://problem/114666245>
*** This bug has been marked as a duplicate of bug 260897 ***