Skip to content

Commit 15a936a

Browse files
authored
Fix line break
1 parent 88cfdb4 commit 15a936a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/extattrs.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,7 @@ bool setAttributeValueQString(const QString &path, const QString &attribute, con
141141
namespacedAttr.append(XATTR_NAMESPACE).append(".").append(attribute);
142142
int success = setxattr(path.toLatin1().data(),
143143
namespacedAttr.toLatin1().data(),
144-
value.toLatin1().data(), value.length() + 1, 0); //
145-
include \0 termination char
144+
value.toLatin1().data(), value.length() + 1, 0); // include \0 termination char
146145
// check if we set the attribute value
147146
return (success == 0);
148147
#endif

0 commit comments

Comments
 (0)