Skip to content

Commit

Permalink
Merge pull request #3569 from nextcloud/bugfix/fixPermissionsLog
Browse files Browse the repository at this point in the history
print the real permissions string instead of its address
  • Loading branch information
mgallien authored Jul 21, 2021
2 parents 9d2cb53 + 1fca075 commit 58cf46f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/remotepermissions.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class OCSYNC_EXPORT RemotePermissions

friend QDebug operator<<(QDebug &dbg, RemotePermissions p)
{
return dbg << p.toString().constData();
return dbg << p.toString();
}
};

Expand Down

0 comments on commit 58cf46f

Please sign in to comment.