Explorar el Código

print the real permissions string instead of its address

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
Matthieu Gallien hace 4 años
padre
commit
1fca07546c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/common/remotepermissions.h

+ 1 - 1
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();
     }
 };