aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/nnn.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 4016b01..52487a8 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -1884,10 +1884,10 @@ static char *unescape(const char *str, uint maxcols)
if (maxcols) {
len = lencount = wcswidth(wbuf, len);
- while (len > maxcols) {
- wbuf[--lencount] = L'\0';
- len = wcswidth(wbuf, lencount);
- }
+ while (len > maxcols)
+ len = wcswidth(wbuf, --lencount);
+
+ wbuf[lencount] = L'\0';
}
while (*buf) {