From 710f9cf54b105fac1c716b96a0e336de88b50287 Mon Sep 17 00:00:00 2001 From: adamdunkels Date: Wed, 9 Jul 2008 09:37:50 +0000 Subject: [PATCH] Removed debug printout --- platform/native/dev/xmem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;