diff options
Diffstat (limited to 'extras/volume_id/lib/fat.c')
-rw-r--r-- | extras/volume_id/lib/fat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/volume_id/lib/fat.c b/extras/volume_id/lib/fat.c index 4840a2a23c..9a11eaad55 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; } |