Commented out otherwise unguarded printf().

This commit is contained in:
oliverschmidt 2008-11-06 23:15:58 +00:00
parent 9d84a484d0
commit 28889f2210

View file

@ -30,7 +30,7 @@
*
* Author: Adam Dunkels <adam@sics.se>
*
* $Id: psock.c,v 1.6 2008/10/31 18:10:24 adamdunkels Exp $
* $Id: psock.c,v 1.7 2008/11/06 23:15:58 oliverschmidt Exp $
*/
#include <stdio.h>
@ -193,7 +193,7 @@ PT_THREAD(psock_send(CC_REGISTER_ARG struct psock *s, const uint8_t *buf,
* acknowledged and sent (data_is_acked_and_send() returns 1).
*/
PT_YIELD_UNTIL(&s->psockpt, data_is_sent_and_acked(s));
printf("sendlen %d\n", s->sendlen);
/* printf("sendlen %d\n", s->sendlen); */
}
s->state = STATE_NONE;