Browse Source

Fix style issue

master
Roberto E. Vargas Caballero 4 years ago
committed by Hiltjo Posthuma
parent
commit
fbae700a3f
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      st.c

+ 2
- 1
st.c View File

@ -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 */
}


Loading…
Cancel
Save