Skip to content

Commit c6c71b4

Browse files
committed
fix: remove debug printf
1 parent c9ece63 commit c6c71b4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

source/lz77.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@ int lz77_compress(const unsigned char *original, unsigned char **compressed, int
8787
/// 写入头部数据
8888
hsize = sizeof(int);
8989

90-
printf("dddddddddd:%d", hsize);
91-
9290
if ((comp = (unsigned char *)malloc(hsize)) == NULL) return -1;
9391

9492
memcpy(comp, &size, sizeof(int));

0 commit comments

Comments
 (0)