2010-06-28 Joel Sherrill <joel.sherrill@oarcorp.com>

* libmisc/dumpbuf/dumpbuf.c, libmisc/dumpbuf/dumpbuf.h: Add const.
This commit is contained in:
Joel Sherrill
2010-06-28 14:33:34 +00:00
parent c55bbe806e
commit 170f26aa17
3 changed files with 12 additions and 8 deletions

View File

@@ -1,3 +1,7 @@
2010-06-28 Joel Sherrill <joel.sherrill@oarcorp.com>
* libmisc/dumpbuf/dumpbuf.c, libmisc/dumpbuf/dumpbuf.h: Add const.
2010-06-25 Jennifer Averett <Jennifer.Averett@OARcorp.com
* libcsupport/include/rtems/libio.h, libfs/Makefile.am: Added default

View File

@@ -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
)
{

View File

@@ -27,8 +27,8 @@ extern "C" {
* @param[in] length is the length of the buffer
*/
void rtems_print_buffer(
unsigned char *buffer,
int length
const unsigned char *buffer,
int length
);
#ifdef __cplusplus