Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2021-08-04 15:03:03 +0300
committerHannah von Reth <vonreth@kde.org>2021-08-05 11:23:18 +0300
commit6c7a865bb3211df75c4daf44218592b6a51e57a0 (patch)
tree62600ff2bba7439198f3087ededb395ccf8af47c /src/common
parent926b51ef05278e63341eeeb28470df72df986645 (diff)
Print the content of the string not the address
Diffstat (limited to 'src/common')
-rw-r--r--src/common/remotepermissions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/remotepermissions.h b/src/common/remotepermissions.h
index 5dfefb2bb..840aab06c 100644
--- a/src/common/remotepermissions.h
+++ b/src/common/remotepermissions.h
@@ -100,7 +100,7 @@ public:
friend QDebug operator<<(QDebug &dbg, RemotePermissions p)
{
- return dbg << p.toString().constData();
+ return dbg << p.toString();
}
};