Cosmetic.

This commit is contained in:
W. Eric Norum
2005-04-28 17:21:55 +00:00
parent 6cb81d4cc3
commit 2320cfecf3

View File

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