From 2320cfecf359551213afe6bc4f59b17a75d5d6d5 Mon Sep 17 00:00:00 2001 From: "W. Eric Norum" Date: Thu, 28 Apr 2005 17:21:55 +0000 Subject: [PATCH] Cosmetic. --- src/RTEMS/base/rtems_init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/RTEMS/base/rtems_init.c b/src/RTEMS/base/rtems_init.c index 25cd690cb..151df70e4 100644 --- a/src/RTEMS/base/rtems_init.c +++ b/src/RTEMS/base/rtems_init.c @@ -375,11 +375,11 @@ static void heapSpaceCallFunc(const iocshArgBuf *args) if (n >= 1024*1000) { double x = (double)n / (1024 * 1024); - printf("Heap free space %.1f MB\n", x); + printf("Heap space: %.1f MB\n", x); } else { double x = (double)n / 1024; - printf("Heap free space %.1f kB\n", x); + printf("Heap space: %.1f kB\n", x); } }