Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Geyer <debfx@fobos.de>2012-04-19 00:08:22 +0400
committerFelix Geyer <debfx@fobos.de>2012-04-19 00:08:22 +0400
commit2e011d53625da1df14dd0af58961d9daf200d5c7 (patch)
tree3536bff6d6cbac3cac3a116d4b88fb2be8b6c459 /tests/TestKeePass2RandomStream.cpp
parent4e5e5c71ca2b8676801c5ab65c3d00df06bfbec7 (diff)
Improve code style.
Diffstat (limited to 'tests/TestKeePass2RandomStream.cpp')
-rw-r--r--tests/TestKeePass2RandomStream.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/TestKeePass2RandomStream.cpp b/tests/TestKeePass2RandomStream.cpp
index cf520d1d1..5e2e381cb 100644
--- a/tests/TestKeePass2RandomStream.cpp
+++ b/tests/TestKeePass2RandomStream.cpp
@@ -52,7 +52,7 @@ void TestKeePass2RandomStream::test()
QByteArray cipherData;
cipherData.resize(SIZE);
- for (int i=0; i<SIZE; i++) {
+ for (int i = 0; i < SIZE; i++) {
cipherData[i] = data[i] ^ cipherPad[i];
}