From 170f26aa1788c932bb6715776d8789445b714509 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 28 Jun 2010 14:33:34 +0000 Subject: 2010-06-28 Joel Sherrill * libmisc/dumpbuf/dumpbuf.c, libmisc/dumpbuf/dumpbuf.h: Add const. --- cpukit/libmisc/dumpbuf/dumpbuf.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'cpukit/libmisc/dumpbuf/dumpbuf.c') diff --git a/cpukit/libmisc/dumpbuf/dumpbuf.c b/cpukit/libmisc/dumpbuf/dumpbuf.c index 7a99e4e322..97274ecbaa 100644 --- a/cpukit/libmisc/dumpbuf/dumpbuf.c +++ b/cpukit/libmisc/dumpbuf/dumpbuf.c @@ -24,13 +24,13 @@ */ static inline void Dump_Line( - unsigned char *buffer, - int length + const unsigned char *buffer, + int length ); void rtems_print_buffer( - unsigned char *buffer, - int length + const unsigned char *buffer, + int length ) { @@ -50,8 +50,8 @@ void rtems_print_buffer( } static inline void Dump_Line( - unsigned char *buffer, - int length + const unsigned char *buffer, + int length ) { -- cgit v1.2.3