pinosaur
/
st.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e52319c
)
Fix style issue
author
Roberto E. Vargas Caballero
<k0ga@shike2.com>
Fri, 10 Apr 2020 20:26:12 +0000
(22:26 +0200)
committer
Hiltjo Posthuma
<hiltjo@codemadness.org>
Sat, 11 Apr 2020 13:23:23 +0000
(15:23 +0200)
st.c
patch
|
blob
|
history
diff --git
a/st.c
b/st.c
index
81973ee
..
2ecf8f3
100644
(file)
--- 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 */
}