diff options
author | Michele Calgaro <[email protected]> | 2021-07-22 18:05:43 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2021-07-22 18:06:34 +0900 |
commit | dd8f351ccf79de5b881f421425132793ecd2d4b6 (patch) | |
tree | c1c7f43e458a25e3e06c7c8ad20239153febf9a1 | |
parent | 24e879cd14531524036174f36c7ea574e9e7da72 (diff) | |
download | tdebase-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.cpp | 2 |
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":""; |