diff options
author | June McEnroe <june@causal.agency> | 2020-04-01 12:15:44 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-04-01 12:15:44 -0400 |
commit | 77a7c02435179d3e4208cf8588d37bbd124b788e (patch) | |
tree | 7aac2211d07ce3df78ac73d1c000110cc1bfc993 /edit.c | |
parent | Add note about building LibreSSL manually (diff) | |
download | catgirl-77a7c02435179d3e4208cf8588d37bbd124b788e.tar.gz catgirl-77a7c02435179d3e4208cf8588d37bbd124b788e.zip |
Pass correct length to mbstowcs
Too used to sizeof being the right thing for regular strings.
Diffstat (limited to 'edit.c')
-rw-r--r-- | edit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/edit.c b/edit.c index ed83447..bd258b1 100644 --- a/edit.c +++ b/edit.c @@ -143,7 +143,7 @@ static void tabComplete(uint id) { } wchar_t wcs[Cap]; - n = mbstowcs(wcs, comp, sizeof(wcs)); + n = mbstowcs(wcs, comp, Cap); assert(n != (size_t)-1); if (tab.pos + n + 2 > Cap) { completeReject(); |