From fdf5dd54b0f6147d32cafcac253867852f168487 Mon Sep 17 00:00:00 2001 From: fumiama Date: Mon, 7 Jun 2021 19:43:24 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E9=99=A4=E8=BE=93=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protobuf.c | 1 - 1 file changed, 1 deletion(-) diff --git a/protobuf.c b/protobuf.c index 44f9ed7..1fac389 100644 --- a/protobuf.c +++ b/protobuf.c @@ -47,7 +47,6 @@ SIMPLE_PB* get_pb(FILE* fp) { while(p < end) { uint32_t offset = read_num(fp); uint32_t data_len = read_num(fp); - printf("offset: %u, datlen: %u\n", offset, data_len); if(data_len > 0) fread(p, data_len, 1, fp); p += offset; }