Removed debug printout
This commit is contained in:
parent
2023a692d4
commit
710f9cf54b
1 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@
|
|||
*
|
||||
* Author: Adam Dunkels <adam@sics.se>
|
||||
*
|
||||
* $Id: xmem.c,v 1.1 2008/07/03 23:11:27 adamdunkels Exp $
|
||||
* $Id: xmem.c,v 1.2 2008/07/09 09:37:50 adamdunkels Exp $
|
||||
*/
|
||||
|
||||
#include "contiki-conf.h"
|
||||
|
@ -58,7 +58,7 @@ xmem_pwrite(const void *buf, int size, unsigned long offset)
|
|||
write(f, buf, size);
|
||||
close(f);*/
|
||||
|
||||
printf("xmem_write(offset 0x%02x, buf %p, size %d);\n", offset, buf, size);
|
||||
/* printf("xmem_write(offset 0x%02x, buf %p, size %l);\n", offset, buf, size);*/
|
||||
|
||||
memcpy(&xmem[offset], buf, size);
|
||||
return size;
|
||||
|
|
Loading…
Reference in a new issue