forked from Imagelibrary/rtems
2010-06-28 Joel Sherrill <joel.sherrill@oarcorp.com>
* libmisc/dumpbuf/dumpbuf.c, libmisc/dumpbuf/dumpbuf.h: Add const.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
)
|
||||
{
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user