diff --git a/platform/native/dev/xmem.c b/platform/native/dev/xmem.c index 21f8edc0e..24f48b72d 100644 --- a/platform/native/dev/xmem.c +++ b/platform/native/dev/xmem.c @@ -30,7 +30,7 @@ * * Author: Adam Dunkels * - * $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;