summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2005-05-03 22:19:04 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2005-05-03 22:19:04 +0000
commit72ba6689b83bcba71e93abadcdc4a08bf63a74fb (patch)
tree1c276490d6c401fa688250acd5ec11b94c8bfc36 /cpukit/libcsupport
parent2005-05-03 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-72ba6689b83bcba71e93abadcdc4a08bf63a74fb.tar.bz2
2005-05-03 Joel Sherrill <joel@OARcorp.com>
* libcsupport/include/ringbuf.h: Use uint8_t instead of char for raw data buffer.
Diffstat (limited to 'cpukit/libcsupport')
-rw-r--r--cpukit/libcsupport/include/ringbuf.h2
1 files changed, 1 insertions, 1 deletions
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;