aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@suse.de>2006-04-05 17:31:49 +0200
committerKay Sievers <kay.sievers@suse.de>2006-04-05 17:31:49 +0200
commit1017f139b311d7185f57f803c176f191e6d0ce3b (patch)
tree74ed5f6b272c550e0f931b97ff73cfda8c54ea04
parent7baada47bea60dd192067fd36778a77481a3ed3a (diff)
downloadudev-1017f139b311d7185f57f803c176f191e6d0ce3b.tar.gz
volume_id: fix endianess conversion typo for FAT32
-rw-r--r--extras/volume_id/lib/Makefile2
-rw-r--r--extras/volume_id/lib/fat.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/extras/volume_id/lib/Makefile b/extras/volume_id/lib/Makefile
index ac298ab6..03c9315f 100644
--- a/extras/volume_id/lib/Makefile
+++ b/extras/volume_id/lib/Makefile
@@ -13,7 +13,7 @@ INSTALL_DATA = ${INSTALL} -m 644
INSTALL_LIB = ${INSTALL} -m 755
SHLIB_CUR = 0
-SHLIB_REV = 61
+SHLIB_REV = 62
SHLIB_AGE = 0
SHLIB = libvolume_id.so.$(SHLIB_CUR).$(SHLIB_REV).$(SHLIB_AGE)
diff --git a/extras/volume_id/lib/fat.c b/extras/volume_id/lib/fat.c
index 4840a2a2..9a11eaad 100644
--- a/extras/volume_id/lib/fat.c
+++ b/extras/volume_id/lib/fat.c
@@ -321,7 +321,7 @@ fat32:
goto found;
/* set next cluster */
- next = le32_to_cpu(*((uint32_t *) buf) & 0x0fffffff);
+ next = le32_to_cpu(*((uint32_t *) buf)) & 0x0fffffff;
if (next == 0)
break;
}