summaryrefslogtreecommitdiff
path: root/lib/hash.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-09-11 09:27:06 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-09-12 09:50:24 +0200
commit20acb58a38a605cab1b17c0b3379e43cf09b40a6 (patch)
treec7a4b4722ef967e0b13c26b1c1e9d9f6a1a29790 /lib/hash.c
parent67ade28571da2ac688d6edeb26f3abfb4f4ae3e8 (diff)
downloadcurl-20acb58a38a605cab1b17c0b3379e43cf09b40a6.tar.gz
code style: use space after semicolon
Diffstat (limited to 'lib/hash.c')
-rw-r--r--lib/hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hash.c b/lib/hash.c
index 3220d4493..c99b1b699 100644
--- a/lib/hash.c
+++ b/lib/hash.c
@@ -300,7 +300,7 @@ Curl_hash_next_element(struct curl_hash_iterator *iter)
/* If we have reached the end of the list, find the next one */
if(!iter->current_element) {
- for(i = iter->slot_index;i < h->slots;i++) {
+ for(i = iter->slot_index; i < h->slots; i++) {
if(h->table[i].head) {
iter->current_element = h->table[i].head;
iter->slot_index = i + 1;