]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
batman-adv: Remove space before semicolon
authorSven Eckelmann <sven@narfation.org>
Sun, 17 Jun 2012 14:27:22 +0000 (16:27 +0200)
committerAntonio Quartulli <ordex@autistici.org>
Sun, 1 Jul 2012 20:47:23 +0000 (22:47 +0200)
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Antonio Quartulli <ordex@autistici.org>
net/batman-adv/hash.c

index 0759c707e974f640420f732f56422fc2ebb0fbe5..15a849c2d41498989c82ff9d86740eb5cfe4d7cb 100644 (file)
@@ -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]);
        }