about summary refs log tree commit diff
path: root/edit.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-04-01 12:15:44 -0400
committerJune McEnroe <june@causal.agency>2020-04-01 12:15:44 -0400
commit77a7c02435179d3e4208cf8588d37bbd124b788e (patch)
tree7aac2211d07ce3df78ac73d1c000110cc1bfc993 /edit.c
parentAdd note about building LibreSSL manually (diff)
downloadcatgirl-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.c2
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();