commit fbae700a3f32db76106b0ff6f49a73ecf0c2b4fe
Author:     Roberto E. Vargas Caballero <k...@shike2.com>
AuthorDate: Fri Apr 10 22:26:12 2020 +0200
Commit:     Hiltjo Posthuma <hil...@codemadness.org>
CommitDate: Sat Apr 11 15:23:23 2020 +0200

    Fix style issue

diff --git a/st.c b/st.c
index 81973ee..2ecf8f3 100644
--- 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 */
 }
 

Reply via email to