mirror of https://github.com/madler/zlib
Discard unnecessary whitespace before a quoted newline
This commit is contained in:
parent
0f51fb4933
commit
b0fe096336
|
@ -235,7 +235,7 @@ static int do_list(unzFile uf) {
|
||||||
|
|
||||||
err = unzGetGlobalInfo64(uf,&gi);
|
err = unzGetGlobalInfo64(uf,&gi);
|
||||||
if (err!=UNZ_OK)
|
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(" Length Method Size Ratio Date Time CRC-32 Name\n");
|
||||||
printf(" ------ ------ ---- ----- ---- ---- ------ ----\n");
|
printf(" ------ ------ ---- ----- ---- ---- ------ ----\n");
|
||||||
for (i=0;i<gi.number_entry;i++)
|
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
|
||||||
|
|
||||||
err = unzGetGlobalInfo64(uf,&gi);
|
err = unzGetGlobalInfo64(uf,&gi);
|
||||||
if (err!=UNZ_OK)
|
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++)
|
for (i=0;i<gi.number_entry;i++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue