Browse Source

batman-adv: Remove space before semicolon

Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmann 13 years ago
parent
commit
cb4cca7103
1 changed files with 1 additions and 1 deletions
  1. 1 1
      net/batman-adv/hash.c

+ 1 - 1
net/batman-adv/hash.c

@@ -25,7 +25,7 @@ static void batadv_hash_init(struct batadv_hashtable *hash)
 {
 	uint32_t i;
 
-	for (i = 0 ; i < hash->size; i++) {
+	for (i = 0; i < hash->size; i++) {
 		INIT_HLIST_HEAD(&hash->table[i]);
 		spin_lock_init(&hash->list_locks[i]);
 	}