summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/corefile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/util/corefile.c')
-rw-r--r--src/lib/util/corefile.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/util/corefile.c b/src/lib/util/corefile.c
index ad32a0e4d1a..cf154c3c529 100644
--- a/src/lib/util/corefile.c
+++ b/src/lib/util/corefile.c
@@ -70,7 +70,7 @@
TYPE DEFINITIONS
***************************************************************************/
-enum _text_file_type
+enum text_file_type
{
TFT_OSD = 0, /* OSD depdendent encoding format used when BOMs missing */
TFT_UTF8, /* UTF-8 */
@@ -79,7 +79,6 @@ enum _text_file_type
TFT_UTF32BE, /* UTF-32 (UCS-4) (big endian) */
TFT_UTF32LE /* UTF-32 (UCS-4) (little endian) */
};
-typedef enum _text_file_type text_file_type;
struct zlib_data
@@ -91,8 +90,7 @@ struct zlib_data
};
-/* typedef struct _core_file core_file -- declared in corefile.h */
-struct _core_file
+struct core_file
{
osd_file * file; /* OSD file handle */
zlib_data * zdata; /* compression data */