summaryrefslogtreecommitdiffstats
path: root/curs_lib.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2000-05-20 15:46:39 +0000
committerThomas Roessler <roessler@does-not-exist.org>2000-05-20 15:46:39 +0000
commit92f926fc34d3cd2dfb5fae7ccb12905e4bc412ad (patch)
tree2774e06752a810b3ffd4d833ce09ab162c692dee /curs_lib.c
parent9f395d0586ec5315e9b6e88035aef6a28e276a90 (diff)
String conversion patch from EGE.
Diffstat (limited to 'curs_lib.c')
-rw-r--r--curs_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/curs_lib.c b/curs_lib.c
index de0f72e9..ac7dbc6a 100644
--- a/curs_lib.c
+++ b/curs_lib.c
@@ -467,7 +467,7 @@ int mutt_multi_choice (char *prompt, char *letters)
int mutt_addwch (wchar_t wc)
{
- char buf[6]; /* FIXME */
+ char buf[MB_LEN_MAX];
int n;
n = wctomb (buf, wc);