From 0b38ca12877fb2a9468eaf92a077f54544573d72 Mon Sep 17 00:00:00 2001 From: Adam Sutton Date: Mon, 6 Aug 2012 17:10:15 +0100 Subject: [PATCH] Remove redundant (and sometimes problematic) typedef. --- src/filebundle.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/filebundle.c b/src/filebundle.c index b054e6df..3bab3545 100644 --- a/src/filebundle.c +++ b/src/filebundle.c @@ -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