From 8c1888811f936e6e0ab5d0e1ec423c0afeb20c42 Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Thu, 27 Aug 2020 00:33:53 +0200 Subject: [PATCH] IPCCompiler: Unbreak building with extra debug macros --- DevTools/IPCCompiler/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DevTools/IPCCompiler/main.cpp b/DevTools/IPCCompiler/main.cpp index 40ec2fb25e..d0212ec489 100644 --- a/DevTools/IPCCompiler/main.cpp +++ b/DevTools/IPCCompiler/main.cpp @@ -393,7 +393,7 @@ int main(int argc, char** argv) out() << " }"; out() << " if (stream.handle_read_failure()) {"; #ifdef GENERATE_DEBUG_CODE - out() << " sout() << \"Failed to read the message\";"; + out() << " dbg() << \"Failed to read the message\";"; #endif out() << " return nullptr;"; out() << " }";