projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
38245b6
)
Hashlib indenting fix
author
Clifford Wolf
<clifford@clifford.at>
Tue, 5 Apr 2016 11:25:23 +0000
(13:25 +0200)
committer
Clifford Wolf
<clifford@clifford.at>
Tue, 5 Apr 2016 11:25:23 +0000
(13:25 +0200)
kernel/hashlib.h
patch
|
blob
|
history
diff --git
a/kernel/hashlib.h
b/kernel/hashlib.h
index 280b1693fb4356edeebdbe76df974cd1cc3d5fe9..abdeefa13fa9d4966415265e95cf29a683fc6771 100644
(file)
--- a/
kernel/hashlib.h
+++ b/
kernel/hashlib.h
@@
-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;
}
};