From: Kay Sievers Date: Wed, 5 Apr 2006 15:31:49 +0000 (+0200) Subject: volume_id: fix endianess conversion typo for FAT32 X-Git-Tag: 174~2297 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=1017f139b311d7185f57f803c176f191e6d0ce3b volume_id: fix endianess conversion typo for FAT32 --- diff --git a/extras/volume_id/lib/Makefile b/extras/volume_id/lib/Makefile index ac298ab6c..03c9315f9 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 4840a2a23..9a11eaad5 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; }