summaryrefslogtreecommitdiff
path: root/net/batman-adv/hash.c
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2012-06-17 16:27:22 +0200
committerAntonio Quartulli <ordex@autistici.org>2012-07-01 22:47:23 +0200
commitcb4cca7103ea29b9296a85fe45966e7d95669ee1 (patch)
tree1ecee4adfdaa8319b8d1a31599f29f52f99604ff /net/batman-adv/hash.c
parentb706b13b6cfde22d1f4adc540fd89426247c1e3e (diff)
batman-adv: Remove space before semicolon
Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: Antonio Quartulli <ordex@autistici.org>
Diffstat (limited to 'net/batman-adv/hash.c')
-rw-r--r--net/batman-adv/hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/hash.c b/net/batman-adv/hash.c
index 0759c707e974..15a849c2d414 100644
--- a/net/batman-adv/hash.c
+++ b/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]);
}