From 1f89943c809fe32a42949fce13b998fa9d0144d5 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 29 Sep 2009 04:25:52 +0000 Subject: =?UTF-8?q?2009-09-29=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * score/src/heapwalk.c(Heap_Walk_printer): Add missing return type. --- cpukit/ChangeLog | 1 + cpukit/score/src/heapwalk.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 + * 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 #include -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, -- cgit v1.2.3