Removed debug printout

This commit is contained in:
adamdunkels 2008-07-09 09:37:50 +00:00
parent 2023a692d4
commit 710f9cf54b

View file

@ -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;