aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/locale.c4
1 files changed, 2 insertions, 2 deletions
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;