storage.c: Remove debug printf()

This commit is contained in:
Harald Welte 2016-10-19 00:22:55 +02:00
parent 74d1e3409d
commit 57ea229e8a
1 changed files with 0 additions and 1 deletions

View File

@ -124,7 +124,6 @@ struct osmo_e1cap_pkthdr *osmo_e1cap_read_next(struct osmo_e1cap_file *f)
return NULL;
}
pkt->len = ntohl(pkt->len);
printf("len=%u\n", pkt->len);
/* read data */
if (pkt->len > OSMO_E1REC_ALLOC_SIZE - sizeof(*pkt)) {
pkt = talloc_realloc_size(f, pkt, sizeof(*pkt) + pkt->len);