diff options
author | Roberto E. Vargas Caballero <k0ga@shike2.com> | 2020-04-10 22:26:12 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-04-11 15:23:23 +0200 |
commit | fbae700a3f32db76106b0ff6f49a73ecf0c2b4fe (patch) | |
tree | a04f5edccd58d1634d0955efe255338bb1b00a19 | |
parent | e52319cc7d153e4f59b38c4fb4c0556e118d4775 (diff) |
Fix style issue
-rw-r--r-- | st.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 */ } |