mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-01 18:07:05 -04:00
Fix code style
This commit is contained in:
parent
19eb6a8a60
commit
95b0ad15ef
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue