Skip to content

Commit 794154b

Browse files
Discard unnecessary whitespace before a quoted newline
1 parent ac8f12c commit 794154b

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
@@ -235,7 +235,7 @@ static int do_list(unzFile uf) {
235235

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

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

473473
for (i=0;i<gi.number_entry;i++)
474474
{

0 commit comments

Comments
 (0)