Skip to content

Commit c5a2f33

Browse files
Discard unnecessary whitespace before a quoted newline
1 parent c7ddcc2 commit c5a2f33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contrib/minizip/miniunz.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ static int do_list(unzFile uf) {
229229

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

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

467467
for (i=0;i<gi.number_entry;i++)
468468
{

0 commit comments

Comments
 (0)