Skip to content

Commit d0b375c

Browse files
committed
Fix zipstat struct name
1 parent d5996e4 commit d0b375c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/include/otezip/zip.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ typedef struct otezip_error zip_error_t; /* error structure */
163163
#define ZIP_STAT_COMP_METHOD 0x0040u
164164

165165
/* zip_stat structure */
166-
struct otezip_stat {
166+
struct zip_stat {
167167
zip_uint64_t valid; /* which fields have valid values */
168168
const char *name; /* name of the file */
169169
zip_uint64_t index; /* index within archive */
@@ -174,7 +174,7 @@ struct otezip_stat {
174174
zip_uint16_t comp_method; /* compression method used */
175175
};
176176

177-
typedef struct otezip_stat zip_stat_t;
177+
typedef struct zip_stat zip_stat_t;
178178

179179
/* ---------------------------- public API ----------------------------- */
180180

0 commit comments

Comments
 (0)