Remove unguarded printf()

This commit is contained in:
adamdunkels 2008-11-09 10:53:25 +00:00
parent 6677b949b8
commit 942e8f37c2
3 changed files with 14 additions and 14 deletions

View file

@ -28,7 +28,7 @@
*
* This file is part of the Contiki operating system.
*
* $Id: shell-sendtest.c,v 1.3 2008/08/15 18:58:42 adamdunkels Exp $
* $Id: shell-sendtest.c,v 1.4 2008/11/09 10:53:25 adamdunkels Exp $
*/
/**
@ -74,13 +74,13 @@ write_chunk(struct rucb_conn *c, int offset, int flag,
ether_set_text(buf);
}
#endif /* NETSIM */
printf("+");
/* printf("+");*/
}
static int
read_chunk(struct rucb_conn *c, int offset, char *to, int maxsize)
{
int size;
printf("-");
/* printf("-");*/
size = maxsize;
if(bytecount + maxsize >= filesize) {
size = filesize - bytecount;