aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2016-04-05 13:25:23 +0200
committerClifford Wolf <clifford@clifford.at>2016-04-05 13:25:23 +0200
commitace462237f1223a41f6d29d1fe29652fcf435882 (patch)
treecad4ea9190064501109a5e0bba8297bbfbaee70e
parent38245b6733d9ec28ae1d37fb5ffba62b0aec791c (diff)
downloadyosys-ace462237f1223a41f6d29d1fe29652fcf435882.tar.gz
yosys-ace462237f1223a41f6d29d1fe29652fcf435882.tar.bz2
yosys-ace462237f1223a41f6d29d1fe29652fcf435882.zip
Hashlib indenting fix
-rw-r--r--kernel/hashlib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/hashlib.h b/kernel/hashlib.h
index 280b1693f..abdeefa13 100644
--- 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;
}
};