From b2cd4638bd673865a42d93e6feafadc4f1366064 Mon Sep 17 00:00:00 2001 From: Matthias Kovatsch Date: Wed, 7 Dec 2011 19:43:30 +0100 Subject: [PATCH] Removed debug output. --- apps/er-coap-07/er-coap-07.c | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/er-coap-07/er-coap-07.c b/apps/er-coap-07/er-coap-07.c index 55fa4852f..1e3223b2e 100644 --- a/apps/er-coap-07/er-coap-07.c +++ b/apps/er-coap-07/er-coap-07.c @@ -449,7 +449,6 @@ coap_serialize_message(void *packet, uint8_t *buffer) PRINTF("Block2 [%lu%s (%u B/blk)]\n", ((coap_packet_t *)packet)->block2_num, ((coap_packet_t *)packet)->block2_more ? "+" : "", ((coap_packet_t *)packet)->block2_size); uint32_t block = ((coap_packet_t *)packet)->block2_num << 4; -printf("encode %lu\n", block>>4); if (((coap_packet_t *)packet)->block2_more) block |= 0x8; block |= 0xF & log_2(((coap_packet_t *)packet)->block2_size/16);