aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/dict/oed.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-03-26 01:59:35 +0000
committerrsc <devnull@localhost>2004-03-26 01:59:35 +0000
commitbe22ae2d0729f68672e3202c91cfe13c9e74cccc (patch)
treeb7bc9f9c1e8d3b221adc82f055f8be19ef25d0e6 /src/cmd/dict/oed.c
parent4e3a2cc1f96f4479f951958f9ca1860f57a0771b (diff)
downloadplan9port-be22ae2d0729f68672e3202c91cfe13c9e74cccc.tar.gz
plan9port-be22ae2d0729f68672e3202c91cfe13c9e74cccc.tar.bz2
plan9port-be22ae2d0729f68672e3202c91cfe13c9e74cccc.zip
SunOS can rot in hell.
Diffstat (limited to 'src/cmd/dict/oed.c')
-rw-r--r--src/cmd/dict/oed.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/dict/oed.c b/src/cmd/dict/oed.c
index 868eb486..1e1c0c5c 100644
--- a/src/cmd/dict/oed.c
+++ b/src/cmd/dict/oed.c
@@ -992,7 +992,7 @@ static int naux;
static char auxname[Maxaux][Buflen];
static char auxval[Maxaux][Buflen];
static char spec[Buflen];
-static uchar *auxstate[Naux]; /* vals for most recent tag */
+static char *auxstate[Naux]; /* vals for most recent tag */
static Entry curentry;
#define cursize (curentry.end-curentry.start)
@@ -1154,7 +1154,7 @@ oedprintentry(Entry e, int cmd)
outchars(auxstate[Num]);
outchars(") ");
} else if(t == Sgk) {
- i = grtab[auxstate[Num][0]];
+ i = grtab[(uchar)auxstate[Num][0]];
if(i != NONE)
outrune(i);
outchars(". ");