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

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthieu Gallien <matthieu.gallien@nextcloud.com>2021-07-09 19:52:13 +0300
committerMatthieu Gallien (Rebase PR Action) <matthieu_gallien@yahoo.fr>2021-07-21 11:25:42 +0300
commit1fca07546cdda7727d8732bb0b5ffc6ac0280af5 (patch)
treefb8b6a86b5e67704be498e2cbff5dafdf00dcdf3 /src
parent9d2cb53cff8d50f839372cc3ef85a8799cf4f08e (diff)
print the real permissions string instead of its address
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
Diffstat (limited to 'src')
-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 6e9550783..e02738a60 100644
--- a/src/common/remotepermissions.h
+++ b/src/common/remotepermissions.h
@@ -99,7 +99,7 @@ public:
friend QDebug operator<<(QDebug &dbg, RemotePermissions p)
{
- return dbg << p.toString().constData();
+ return dbg << p.toString();
}
};