commit d7cf3733582b61838882cc2562b7103d238ce1eb
parent e0a0d23f7803d3cd4de86b7dddf716cca4fa5fee
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Mon, 20 Jun 2005 21:03:57 +0000
typo fix
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2738 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/chars.c b/src/chars.c
@@ -222,9 +222,9 @@ char *control_mbrep(const char *c, char *crep, int *crep_len)
*crep_len = wctomb(crep, control_wrep(wc));
- if (*crep_mb_len <= 0) {
+ if (*crep_len <= 0) {
wctomb(NULL, 0);
- *crep_mb_len = 0;
+ *crep_len = 0;
}
} else {
#endif