Changes by: yura
Update of /cvs/linux-ntfs/ntfsprogs/include/ntfs
In directory delta357:/tmp/cvs-serv16552/include/ntfs
Modified Files:
layout.h
Log Message:
o fix magicNTFS defenition
o remove NTFS_SB_MAGIC because it is unusefull
o rename magicNTFS -> NTFS_SB_MAGIC
o make bootsect.c use NTFS_SB_MAGIC instead of hardcoded value
Index: layout.h
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/include/ntfs/layout.h,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -p -r1.61 -r1.62
--- layout.h 9 Dec 2006 11:27:37 -0000 1.61
+++ layout.h 11 Dec 2006 03:02:23 -0000 1.62
@@ -27,9 +27,8 @@
#include "endians.h"
#include "support.h"
-/* The NTFS oem_id */
-#define magicNTFS const_cpu_to_le64(0x202020205346544e) /* "NTFS " */
-#define NTFS_SB_MAGIC 0x5346544e /* 'NTFS' */
+/* The NTFS oem_id "NTFS " */
+#define NTFS_SB_MAGIC const_cpu_to_le64(0x202020205346544eULL)
/*
* Location of bootsector on partition:
|