From 3adf3f3f8e78995081032f757aa8d23778dfc3d2 Mon Sep 17 00:00:00 2001 From: koekeishiya Date: Sun, 25 Mar 2018 00:53:44 +0100 Subject: fix whitespace --- src/locale.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/locale.c') diff --git a/src/locale.c b/src/locale.c index 728463b..afe7ec1 100644 --- a/src/locale.c +++ b/src/locale.c @@ -30,10 +30,10 @@ internal int hash_keymap(const char *a) { unsigned long hash = 0, high; - while(*a) { + while (*a) { hash = (hash << 4) + *a++; high = hash & 0xF0000000; - if(high) { + if (high) { hash ^= (high >> 24); } hash &= ~high; -- cgit v1.2.3