Skip to content

Commit

Permalink
Discard unnecessary whitespace before a quoted newline
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriPapadopoulos committed Aug 6, 2023
1 parent c7ddcc2 commit c5a2f33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contrib/minizip/miniunz.c
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ static int do_list(unzFile uf) {

err = unzGetGlobalInfo64(uf,&gi);
if (err!=UNZ_OK)
printf("error %d with zipfile in unzGetGlobalInfo \n",err);
printf("error %d with zipfile in unzGetGlobalInfo\n",err);
printf(" Length Method Size Ratio Date Time CRC-32 Name\n");
printf(" ------ ------ ---- ----- ---- ---- ------ ----\n");
for (i=0;i<gi.number_entry;i++)
Expand Down Expand Up @@ -462,7 +462,7 @@ static int do_extract(unzFile uf, int opt_extract_without_path, int opt_overwrit

err = unzGetGlobalInfo64(uf,&gi);
if (err!=UNZ_OK)
printf("error %d with zipfile in unzGetGlobalInfo \n",err);
printf("error %d with zipfile in unzGetGlobalInfo\n",err);

for (i=0;i<gi.number_entry;i++)
{
Expand Down

0 comments on commit c5a2f33

Please sign in to comment.