From 72ba6689b83bcba71e93abadcdc4a08bf63a74fb Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 3 May 2005 22:19:04 +0000 Subject: 2005-05-03 Joel Sherrill * libcsupport/include/ringbuf.h: Use uint8_t instead of char for raw data buffer. --- cpukit/ChangeLog | 5 +++++ cpukit/libcsupport/include/ringbuf.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index dfbcd02a66..35546aec7e 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,8 @@ +2005-05-03 Joel Sherrill + + * libcsupport/include/ringbuf.h: Use uint8_t instead of char for raw + data buffer. + 2005-05-03 Joel Sherrill * rtems/src/regiongetfreeinfo.c: Return RTEMS_SUCCESSFUL instead of diff --git a/cpukit/libcsupport/include/ringbuf.h b/cpukit/libcsupport/include/ringbuf.h index a9abbbe9df..39941d857d 100644 --- a/cpukit/libcsupport/include/ringbuf.h +++ b/cpukit/libcsupport/include/ringbuf.h @@ -16,7 +16,7 @@ #endif typedef struct { - char buffer[RINGBUF_QUEUE_LENGTH]; + uint8_t buffer[RINGBUF_QUEUE_LENGTH]; volatile int head; volatile int tail; } Ring_buffer_t; -- cgit v1.2.3