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/libcsupport/include/ringbuf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/libcsupport') 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