Index: uspace/lib/label/src/mbr.c
===================================================================
--- uspace/lib/label/src/mbr.c	(revision 5772aa1259315387724d7fca7781519f8e8c5653)
+++ uspace/lib/label/src/mbr.c	(revision 7850dda67ede0986d7053d2b73a5f416b36ec072)
@@ -151,7 +151,16 @@
 	/*
 	 * We can't really tell whether this is an MBR. Make sure
-	 * this is not actually the BR of a FAT file system
+	 * this is not actually the BR of a 12/16-bit FAT file system
 	 */
 	if (bs->type[0] == 'F' && bs->type[1] == 'A' && bs->type[2] == 'T') {
+		rc = EIO;
+		goto error;
+	}
+
+	/*
+	 * Or a 32-bit FAT file system
+	 */
+	if (bs->fat32.type[0] == 'F' && bs->fat32.type[1] == 'A' &&
+	    bs->fat32.type[2] == 'T') {
 		rc = EIO;
 		goto error;
