summaryrefslogtreecommitdiffstats
path: root/cpukit/score
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-09-29 04:25:52 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-09-29 04:25:52 +0000
commit1f89943c809fe32a42949fce13b998fa9d0144d5 (patch)
treeb4ce8776820ba6bbccf1d57692c8ec4369f41555 /cpukit/score
parent2009-09-29 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-1f89943c809fe32a42949fce13b998fa9d0144d5.tar.bz2
2009-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
* score/src/heapwalk.c(Heap_Walk_printer): Add missing return type.
Diffstat (limited to 'cpukit/score')
-rw-r--r--cpukit/score/src/heapwalk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/src/heapwalk.c b/cpukit/score/src/heapwalk.c
index ee58ea278d..5bb57af0f4 100644
--- a/cpukit/score/src/heapwalk.c
+++ b/cpukit/score/src/heapwalk.c
@@ -28,7 +28,7 @@
#include <rtems/score/interr.h>
#include <rtems/bspIo.h>
-typedef (*Heap_Walk_printer)(int, bool, const char*, ...);
+typedef int (*Heap_Walk_printer)(int, bool, const char*, ...);
static void _Heap_Walk_print_nothing(
int source,