From: Clifford Wolf Date: Tue, 5 Apr 2016 11:25:23 +0000 (+0200) Subject: Hashlib indenting fix X-Git-Tag: yosys-0.7~264 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ace462237f1223a41f6d29d1fe29652fcf435882;p=yosys.git Hashlib indenting fix --- 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; } };