summaryrefslogtreecommitdiffstats
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
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.
-rw-r--r--cpukit/ChangeLog1
-rw-r--r--cpukit/score/src/heapwalk.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index f650234356..f6a47bfb30 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,6 @@
2009-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
+ * score/src/heapwalk.c(Heap_Walk_printer): Add missing return type.
* libnetworking/lib/tftpDriver.c (rtems_tftp_eval_path):
Add missing parameter pathlen.
* libmisc/shell/hexdump-conv.c: Use %lc instead of %C.
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,