aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/clist.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/sys/clist.h')
-rw-r--r--sys/sys/clist.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/clist.h b/sys/sys/clist.h
index bad26477015d..3e05cf6b7700 100644
--- a/sys/sys/clist.h
+++ b/sys/sys/clist.h
@@ -34,9 +34,9 @@
*/
struct cblock {
- struct cblock *c_next; /* next cblock in queue */
- char c_quote[CBQSIZE]; /* quoted characters */
- char c_info[CBSIZE]; /* characters */
+ struct cblock *c_next; /* next cblock in queue */
+ unsigned char c_quote[CBQSIZE]; /* quoted characters */
+ unsigned char c_info[CBSIZE]; /* characters */
};
#ifdef KERNEL