X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Fbase%2Ftries.c;h=c4263c7e50eb22aad5dd88234c837d5e0cabbf3b;hp=54e4d9831ebc97dff0ea0fd543adb1ca8636ec54;hb=feb958a7e85895ec23547b7b1a8daa03e85c7b9c;hpb=bd7ef7c2309fd00aa4576168c46f557c622cb9c3 diff --git a/ncurses/base/tries.c b/ncurses/base/tries.c index 54e4d983..c4263c7e 100644 --- a/ncurses/base/tries.c +++ b/ncurses/base/tries.c @@ -39,7 +39,7 @@ #include -MODULE_ID("$Id: tries.c,v 1.26 2008/05/31 16:54:22 tom Exp $") +MODULE_ID("$Id: tries.c,v 1.27 2008/08/16 19:22:55 tom Exp $") /* * Expand a keycode into the string that it corresponds to, returning null if @@ -68,7 +68,7 @@ _nc_expand_try(TRIES * tree, unsigned code, int *count, size_t len) } } if (result != 0) { - if (ptr != 0 && (result[len] = ptr->ch) == 0) + if (ptr != 0 && (result[len] = (char) ptr->ch) == 0) *((unsigned char *) (result + len)) = 128; #ifdef TRACE if (len == 0 && USE_TRACEF(TRACE_MAXIMUM)) {