all repos — st @ fbae700a3f32db76106b0ff6f49a73ecf0c2b4fe

st (suckless terminal) config

Fix style issue
Roberto E. Vargas Caballero k0ga@shike2.com
commit

fbae700a3f32db76106b0ff6f49a73ecf0c2b4fe

parent

e52319cc7d153e4f59b38c4fb4c0556e118d4775

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M st.cst.c

@@ -366,7 +366,8 @@

char base64dec_getc(const char **src) { - while (**src && !isprint(**src)) (*src)++; + while (**src && !isprint(**src)) + (*src)++; return **src ? *((*src)++) : '='; /* emulate padding if string ends */ }