Remove redundant (and sometimes problematic) typedef.

This commit is contained in:
Adam Sutton 2012-08-06 17:10:15 +01:00
parent a8096d4ea8
commit 0b38ca1287

View file

@ -33,7 +33,7 @@
* *************************************************************************/
/* File bundle dir handle */
typedef struct filebundle_dir
struct filebundle_dir
{
fb_type type;
fb_dirent dirent;
@ -47,10 +47,10 @@ typedef struct filebundle_dir
filebundle_entry_t *cur;
} b;
};
} fb_dir;
};
/* File bundle file handle */
typedef struct filebundle_file
struct filebundle_file
{
fb_type type;
size_t size;
@ -65,7 +65,7 @@ typedef struct filebundle_file
const filebundle_entry_t *root;
} b;
};
} fb_file;
};
/* **************************************************************************
* Compression/Decompression