Hashlib indenting fix
authorClifford Wolf <clifford@clifford.at>
Tue, 5 Apr 2016 11:25:23 +0000 (13:25 +0200)
committerClifford Wolf <clifford@clifford.at>
Tue, 5 Apr 2016 11:25:23 +0000 (13:25 +0200)
kernel/hashlib.h

index 280b1693fb4356edeebdbe76df974cd1cc3d5fe9..abdeefa13fa9d4966415265e95cf29a683fc6771 100644 (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;
        }
 };