From 0a189322ef87493d9381d8baf82ebae8e1009819 Mon Sep 17 00:00:00 2001
From: gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>
Date: Sun, 11 Jul 2010 10:24:18 +0000
Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2067
 35acf78f-673a-0410-8e92-d51de3d6d3f4

---
 demos/ARMCM3-STM32F103-FATFS-GCC/main.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/demos/ARMCM3-STM32F103-FATFS-GCC/main.c b/demos/ARMCM3-STM32F103-FATFS-GCC/main.c
index cfe5fde8b..0802ec7bc 100644
--- a/demos/ARMCM3-STM32F103-FATFS-GCC/main.c
+++ b/demos/ARMCM3-STM32F103-FATFS-GCC/main.c
@@ -113,11 +113,11 @@ static void cmd_mem(BaseChannel *chp, int argc, char *argv[]) {
     return;
   }
   n = chHeapStatus(NULL, &size);
-  siprintf(buf, "core free memory : %lu bytes", chCoreStatus());
+  siprintf(buf, "core free memory : %u bytes", chCoreStatus());
   shellPrintLine(chp, buf);
-  siprintf(buf, "heap fragments   : %lu", n);
+  siprintf(buf, "heap fragments   : %u", n);
   shellPrintLine(chp, buf);
-  siprintf(buf, "heap free total  : %lu bytes", size);
+  siprintf(buf, "heap free total  : %u bytes", size);
   shellPrintLine(chp, buf);
 }
 
-- 
cgit v1.2.3