From f2b687549b56ead12c5875260bfcc7a1364dd6e7 Mon Sep 17 00:00:00 2001 From: "flatcap.org!ntfs" Date: Tue, 18 Nov 2003 21:17:57 +0000 Subject: [PATCH] force the constant to the 64 bit (Logical change 1.237) --- libntfs/bootsect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libntfs/bootsect.c b/libntfs/bootsect.c index 25cc77c1..c386e464 100644 --- a/libntfs/bootsect.c +++ b/libntfs/bootsect.c @@ -73,7 +73,7 @@ BOOL ntfs_boot_sector_is_ntfs(const NTFS_BOOT_SECTOR *b, const BOOL silent) /* Check OEMidentifier is "NTFS " */ if (!silent) fprintf(stderr, "Checking OEMid... "); - if (b->oem_id != cpu_to_le64(0x202020205346544e)) /* "NTFS " */ + if (b->oem_id != cpu_to_le64(0x202020205346544eULL)) /* "NTFS " */ goto not_ntfs; if (!silent) fprintf(stderr, "OK\n");