Skip to content

Commit 060b28c

Browse files
authored
Update zip.c
Avoid using two different comment styles
1 parent c77bbb0 commit 060b28c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contrib/minizip/zip.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2212,7 +2212,7 @@ extern int ZEXPORT zipRemoveExtraInfoBlock(char* pData, int* dataLen, short sHea
22122212
}
22132213
else
22142214
{
2215-
// Extra Info block should not be removed, So copy it to the temp buffer.
2215+
/* Extra Info block should not be removed, So copy it to the temp buffer. */
22162216
memcpy(pTmp, p, (size_t)(dataSize + 4));
22172217
p += dataSize + 4;
22182218
size += dataSize + 4;
@@ -2222,7 +2222,7 @@ extern int ZEXPORT zipRemoveExtraInfoBlock(char* pData, int* dataLen, short sHea
22222222

22232223
if(size < *dataLen)
22242224
{
2225-
// clean old extra info block.
2225+
/* clean old extra info block. */
22262226
memset(pData,0, (size_t)(*dataLen));
22272227

22282228
/* copy the new extra info block over the old */

0 commit comments

Comments
 (0)