summaryrefslogtreecommitdiff
path: root/DevTools/IPCCompiler
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2020-08-27 00:33:53 +0200
committerAndreas Kling <kling@serenityos.org>2020-08-30 09:43:49 +0200
commit8c1888811f936e6e0ab5d0e1ec423c0afeb20c42 (patch)
treef251d0f7133edfd13fd18bdad8245af5879496cf /DevTools/IPCCompiler
parentbc1dc2b68874322370c62bd924bf679567a567eb (diff)
downloadserenity-8c1888811f936e6e0ab5d0e1ec423c0afeb20c42.zip
IPCCompiler: Unbreak building with extra debug macros
Diffstat (limited to 'DevTools/IPCCompiler')
-rw-r--r--DevTools/IPCCompiler/main.cpp2
1 files changed, 1 insertions, 1 deletions
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() << " }";