fix typo around CONFIG_64BIT usage

Would do 64 BITS_PER_LONG when CONFIG_64BIT was NOT defined,
causing BITS_PER_LONG to be wrong on 32bit systems.

Signed-off-by: JP Abgrall <jpa@google.com>
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
This commit is contained in:
JP Abgrall 2014-01-09 13:56:07 -08:00 committed by Jaegeuk Kim
parent 437dbf6773
commit cb54e79739

View File

@ -185,7 +185,7 @@ struct f2fs_configuration {
void *private;
} __attribute__((packed));
#ifndef CONFIG_64BIT
#ifdef CONFIG_64BIT
#define BITS_PER_LONG 64
#else
#define BITS_PER_LONG 32