1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-24 05:18:36 +00:00

Removes many stray spaces.

This commit is contained in:
Thomas Harte
2018-11-23 22:32:32 -05:00
parent 770d7e90e9
commit ee89be6730
28 changed files with 55 additions and 55 deletions
+1 -1
View File
@@ -155,7 +155,7 @@ bool FileHolder::check_signature(const char *signature, std::size_t length) {
// read and check the file signature
std::vector<uint8_t> stored_signature = read(length);
if(stored_signature.size() != length) return false;
if(std::memcmp(stored_signature.data(), signature, length)) return false;
if(std::memcmp(stored_signature.data(), signature, length)) return false;
return true;
}