diff options
Diffstat (limited to 'ed.inputl.c')
| -rw-r--r-- | ed.inputl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ed.inputl.c b/ed.inputl.c index 35f21a4e95a8..a0e66fcb20d7 100644 --- a/ed.inputl.c +++ b/ed.inputl.c @@ -668,9 +668,9 @@ int GetCmdChar(Char ch) { #ifndef WINNT_NATIVE // We use more than 256 for various extended keys - wint_t c = ch & CHAR; + eChar c = ch & CHAR; #else - wint_t c = ch; + eChar c = ch; #endif return c < NT_NUM_KEYS ? CurrentKeyMap[c] : F_INSERT; } |
