1
0
mirror of synced 2026-01-21 10:23:03 +00:00

Hashlib indenting fix

This commit is contained in:
Clifford Wolf 2016-04-05 13:25:23 +02:00
parent 38245b6733
commit ace462237f

View File

@ -136,8 +136,8 @@ struct hash_cstr_ops {
static inline unsigned int hash(const char *a) {
unsigned int hash = mkhash_init;
while (*a)
hash = mkhash(hash, *(a++));
return hash;
hash = mkhash(hash, *(a++));
return hash;
}
};