diff options
author | Slávek Banko <[email protected]> | 2018-08-19 12:40:38 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-08-19 12:40:38 +0200 |
commit | 0184742fd6dda45b4c3ac2f26eb60ec9a8ccedf3 (patch) | |
tree | 22f6f68aeeabfb590fc2a0cbb9e5c4ab5dba5ba8 /soundserver | |
parent | c1b7409de9bfd0c63c662b38b007d99dbb442d38 (diff) | |
download | arts-0184742fd6dda45b4c3ac2f26eb60ec9a8ccedf3.tar.gz arts-0184742fd6dda45b4c3ac2f26eb60ec9a8ccedf3.zip |
Fix FTBFS with stricter C++11
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'soundserver')
-rw-r--r-- | soundserver/gslplayobject_impl.cc | 2 | ||||
-rw-r--r-- | soundserver/wavplayobject_impl.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/soundserver/gslplayobject_impl.cc b/soundserver/gslplayobject_impl.cc index 217fe80..aafb41c 100644 --- a/soundserver/gslplayobject_impl.cc +++ b/soundserver/gslplayobject_impl.cc @@ -134,7 +134,7 @@ public: */ std::string description() { - return "no description available (see "__FILE__")"; + return "no description available (see " __FILE__ ")"; } poTime currentTime() diff --git a/soundserver/wavplayobject_impl.cc b/soundserver/wavplayobject_impl.cc index 6109f7c..8f5f2f1 100644 --- a/soundserver/wavplayobject_impl.cc +++ b/soundserver/wavplayobject_impl.cc @@ -74,7 +74,7 @@ public: * KMedia2 interface */ string description() { - return "no description (see "__FILE__")"; + return "no description (see " __FILE__ ")"; } poTime currentTime() { |