summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2016-12-01 03:03:18 +0100
committerSlávek Banko <slavek.banko@axis.cz>2016-12-01 03:03:18 +0100
commit9faa91eecd162a3d9758a2ecd951578e9b7b19e6 (patch)
treeaf6591818d4795c356f49efc58649fb9000ba7d1
parent244c1e03a0954ef3f3cb9716f9c90ac2fb26bf39 (diff)
downloadtdenetwork-9faa91ee.tar.gz
tdenetwork-9faa91ee.zip
Fix FTBFS with GCC6
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r--kopete/libkopete/kautoconfig.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kopete/libkopete/kautoconfig.cpp b/kopete/libkopete/kautoconfig.cpp
index cdb29672..9570f15c 100644
--- a/kopete/libkopete/kautoconfig.cpp
+++ b/kopete/libkopete/kautoconfig.cpp
@@ -35,7 +35,7 @@
#include "kdebug.h"
#define functionCallPreOrderCheck(functionName, returnValue) \
if(!d->retrievedSettings){ \
- kdDebug(180) << "KAutoConfig::"functionName"() was called before " \
+ kdDebug(180) << "KAutoConfig::" functionName "() was called before " \
"KAutoConfig::retrieveSettings(). This should NEVER happen because " \
"it will do nothing. Please Fix." << endl; \
return returnValue; \
@@ -43,7 +43,7 @@
#define functionCallPostOrderCheck(functionName, returnValue) \
if(d->retrievedSettings){ \
- kdDebug(180) << "KAutoConfig::"functionName"() was called after " \
+ kdDebug(180) << "KAutoConfig::" functionName "() was called after " \
"KAutoConfig::retrieveSettings(). This should NEVER happen because " \
"it will do nothing. Please Fix." << endl; \
return returnValue; \