st

simple terminal

git clone https://9o.is/git/st.git

commit 39db7865b232bd262ed275949659e94b9afe686d
parent a5df66e3fdcc659678558c8ce7e84fac3420dfa5
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri, 10 Apr 2020 22:26:12 +0200

Fix style issue

Diffstat:
Mst.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/st.c b/st.c @@ -366,7 +366,8 @@ static const char base64_digits[] = { char base64dec_getc(const char **src) { - while (**src && !isprint(**src)) (*src)++; + while (**src && !isprint(**src)) + (*src)++; return **src ? *((*src)++) : '='; /* emulate padding if string ends */ }