dect
/
linux-2.6
Archived
13
0
Fork 0

batman-adv: Remove space before semicolon

Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Antonio Quartulli <ordex@autistici.org>
This commit is contained in:
Sven Eckelmann 2012-06-17 16:27:22 +02:00 committed by Antonio Quartulli
parent b706b13b6c
commit cb4cca7103
1 changed files with 1 additions and 1 deletions

View 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]);
}