Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions runtime/include/vmizip.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ typedef struct VMIZipEntry
U_8 *filename;
U_8 *extraField;
U_8 *fileComment;
I_32 dataPointer;
I_32 filenamePointer;
I_32 extraFieldPointer;
I_32 fileCommentPointer;
I_64 dataPointer;
I_64 filenamePointer;
I_64 extraFieldPointer;
I_64 fileCommentPointer;
U_32 compressedSize;
U_32 uncompressedSize;
U_32 crc32;
Expand Down
8 changes: 4 additions & 4 deletions runtime/include/zipsup.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ typedef struct J9ZipEntry {
U_8* filename;
U_8* extraField;
U_8* fileComment;
U_32 dataPointer;
U_32 filenamePointer;
U_32 extraFieldPointer;
I_32 fileCommentPointer;
I_64 dataPointer;
I_64 filenamePointer;
I_64 extraFieldPointer;
I_64 fileCommentPointer;
U_32 compressedSize;
U_32 uncompressedSize;
U_32 crc32;
Expand Down
Loading