From 4a5464f7a32ec95ce6e2a9f488fff94d70698467 Mon Sep 17 00:00:00 2001
From: Roland McGrath <roland@gnu.org>
Date: Sun, 3 Oct 1999 05:05:02 +0000
Subject: 1999-10-03  Roland McGrath  <roland@baalperazim.frob.com>

	* bitmap.c (ffz): Don't subtract one (duh).
---
 ext2fs/bitmap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'ext2fs/bitmap.c')

diff --git a/ext2fs/bitmap.c b/ext2fs/bitmap.c
index fb6d2ada..2f1dd2d1 100644
--- a/ext2fs/bitmap.c
+++ b/ext2fs/bitmap.c
@@ -18,7 +18,7 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
 
-#define ffz(word)	(ffs (~(word)) - 1)
+#define ffz(word)	(ffs (~(word)))
 
 /*
  *  linux/fs/ext2/bitmap.c (&c)
-- 
cgit v1.2.3