Skip to content

Commit b0fe096

Browse files
Discard unnecessary whitespace before a quoted newline
1 parent 0f51fb4 commit b0fe096

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++)
@@ -482,7 +482,7 @@ static int do_extract(unzFile uf, int opt_extract_without_path, int opt_overwrit
482482

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

487487
for (i=0;i<gi.number_entry;i++)
488488
{

0 commit comments

Comments
 (0)