URI: 
       Fix style issue - st - simple terminal
  HTML git clone https://git.parazyd.org/st
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit fbae700a3f32db76106b0ff6f49a73ecf0c2b4fe
   DIR parent e52319cc7d153e4f59b38c4fb4c0556e118d4775
  HTML Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
       Date:   Fri, 10 Apr 2020 22:26:12 +0200
       
       Fix style issue
       
       Diffstat:
         M st.c                                |       3 ++-
       
       1 file changed, 2 insertions(+), 1 deletion(-)
       ---
   DIR 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 */
        }