mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-03-01 10:51:20 -05:00
Fix code style
This commit is contained in:
parent
19eb6a8a60
commit
95b0ad15ef
@ -206,9 +206,10 @@ QByteArray Base32::encode(const QByteArray& data)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// add pad characters
|
// add pad characters
|
||||||
while (o < encodedData.size())
|
while (o < encodedData.size()) {
|
||||||
encodedData[o++] = '=';
|
encodedData[o++] = '=';
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Q_ASSERT(encodedData.size() == o);
|
Q_ASSERT(encodedData.size() == o);
|
||||||
return encodedData;
|
return encodedData;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user