]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - ncurses/base/tries.c
ncurses 5.7 - patch 20090704
[ncurses.git] / ncurses / base / tries.c
index 54e4d9831ebc97dff0ea0fd543adb1ca8636ec54..402bd2f7aa0d84c7c56ff3232073be4ed5ce5686 100644 (file)
@@ -39,7 +39,7 @@
 
 #include <curses.priv.h>
 
-MODULE_ID("$Id: tries.c,v 1.26 2008/05/31 16:54:22 tom Exp $")
+MODULE_ID("$Id: tries.c,v 1.28 2008/11/16 00:19:59 juergen Exp $")
 
 /*
  * Expand a keycode into the string that it corresponds to, returning null if
@@ -68,11 +68,13 @@ _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)) {
-           _tracef("expand_key %s %s", _nc_tracechar(SP, code), _nc_visbuf(result));
+           _tracef("expand_key %s %s",
+                   _nc_tracechar(CURRENT_SCREEN, code),
+                   _nc_visbuf(result));
            _nc_unlock_global(tracef);
        }
 #endif