mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Fix code style
This commit is contained in:
parent
19eb6a8a60
commit
95b0ad15ef
@ -206,8 +206,9 @@ 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);
|
||||||
|
Loading…
Reference in New Issue
Block a user