Skip to content

Commit

Permalink
Fix zip_errlist missing commas (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrideakisAB authored May 1, 2021
1 parent d9b45e6 commit 9c79c4e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/zip.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ static const char *const zip_errlist[30] = {
"no permission\0",
"out of memory\0",
"invalid zip archive name\0",
"make dir error\0"
"symlink error\0"
"close archive error\0"
"make dir error\0",
"symlink error\0",
"close archive error\0",
"capacity size too small\0",
"fseek error\0",
"fread error\0",
Expand Down

0 comments on commit 9c79c4e

Please sign in to comment.