]> wimlib.net Git - wimlib/commitdiff
Remove duplicate ntfs typedefs
authorEric Biggers <ebiggers3@gmail.com>
Wed, 29 Aug 2012 14:17:21 +0000 (09:17 -0500)
committerEric Biggers <ebiggers3@gmail.com>
Wed, 29 Aug 2012 14:17:21 +0000 (09:17 -0500)
src/lookup_table.h

index 56e030589fd2a83c10d609fab9198fa4e6642c8c..afc2117e91557061ff6e0bd8bee8fd551dac07fd 100644 (file)
@@ -27,13 +27,11 @@ struct lookup_table {
 struct wimlib_fd;
 
 #ifdef WITH_NTFS_3G
-typedef struct _ntfs_attr ntfs_attr;
-typedef struct _ntfs_volume ntfs_volume;
 struct ntfs_location {
        char *path_utf8;
        char *stream_name_utf16;
        u16 stream_name_utf16_num_chars;
-       ntfs_volume **ntfs_vol_p;
+       struct _ntfs_volume **ntfs_vol_p;
        bool is_reparse_point;
 };
 #endif
@@ -105,7 +103,7 @@ struct lookup_table_entry {
                struct lookup_table_entry *next_lte_in_swm;
                FILE *file_on_disk_fp;
        #ifdef WITH_NTFS_3G
-               ntfs_attr *attr;
+               struct _ntfs_attr *attr;
        #endif
        };
 #ifdef WITH_FUSE