From 8f99e50ce5a42c143999a083a2b8ca5b2d30f53c Mon Sep 17 00:00:00 2001 From: Aki Niemi Date: Mon, 11 Jan 2010 11:08:42 +0200 Subject: [PATCH] Remove trailing/leading whitespace --- src/idmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/idmap.c b/src/idmap.c index cc9a4ff1..6d46e8a5 100644 --- a/src/idmap.c +++ b/src/idmap.c @@ -45,12 +45,12 @@ static inline int ffz(unsigned long word) return __builtin_ctzl(~word); } -/* +/* * Stolen from linux kernel lib/find_next_bit.c */ static unsigned int find_next_zero_bit(const unsigned long *addr, unsigned int size, - unsigned int offset) + unsigned int offset) { const unsigned long *p = addr + offset / BITS_PER_LONG; unsigned int result = offset & ~(BITS_PER_LONG-1);