Messages in this thread Patch in this message |  | | | From | storner@image ... | | Subject | 2.2.0-pre4 NTFS update: Patch for missing update to include/linux/ntfs_fs_i.h | | Date | Sun, 3 Jan 1999 12:55:46 +0100 (CET) |
| |
It seems an update to include/linux/ntfs_fs_i.h was forgotten in the 2.2.0-pre4 update of the ntfs driver, leading to a couple of undefined symbols in fs/ntfs/inode.c
This patch fixes it:
--- linux/include/linux/ntfs_fs_i.h.pre4 Sun Jan 3 12:45:30 1999 +++ linux/include/linux/ntfs_fs_i.h Sun Jan 3 12:46:33 1999 @@ -8,10 +8,14 @@ /* Duplicate definitions from ntfs/types.h */ #ifndef NTFS_INTEGRAL_TYPES #define NTFS_INTEGRAL_TYPES -typedef unsigned char ntfs_u8; -typedef unsigned short ntfs_u16; -typedef unsigned int ntfs_u32; -typedef unsigned long long ntfs_u64; +typedef u8 ntfs_u8; +typedef u16 ntfs_u16; +typedef u32 ntfs_u32; +typedef u64 ntfs_u64; +typedef s8 ntfs_s8; +typedef s16 ntfs_s16; +typedef s32 ntfs_s32; +typedef s64 ntfs_s64; #endif #ifndef NTMODE_T -- Henrik Storner Praeterea censeo, Microsoftem esse delendam!
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu Please read the FAQ at http://www.tux.org/lkml/
|  |