summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2021-07-22 18:05:43 +0900
committerMichele Calgaro <[email protected]>2021-07-22 18:06:34 +0900
commitdd8f351ccf79de5b881f421425132793ecd2d4b6 (patch)
treec1c7f43e458a25e3e06c7c8ad20239153febf9a1
parent24e879cd14531524036174f36c7ea574e9e7da72 (diff)
downloadtdebase-dd8f351ccf79de5b881f421425132793ecd2d4b6.tar.gz
tdebase-dd8f351ccf79de5b881f421425132793ecd2d4b6.zip
Fixed FTBFS caused by c++11 standard.
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 6e4ef0f880c76f76de52a3acbef1abb7bad80d69)
-rw-r--r--kcontrol/view1394/view1394.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kcontrol/view1394/view1394.cpp b/kcontrol/view1394/view1394.cpp
index 74bba77f2..d6f879fd4 100644
--- a/kcontrol/view1394/view1394.cpp
+++ b/kcontrol/view1394/view1394.cpp
@@ -221,7 +221,7 @@ void View1394::rescanBus()
{
TQString guidStr;
char buf[32];
- snprintf(buf, 32, "%"PRIX64, guid);
+ snprintf(buf, 32, "%" PRIX64, guid);
guidStr=buf;
guidStr="0x"+guidStr.rightJustify(16,'0');
TQString local=((j | 0xffc0) == localNodeId)?"X":"";