~petersanchez/st

fbae700a3f32db76106b0ff6f49a73ecf0c2b4fe — Roberto E. Vargas Caballero 4 years ago e52319c
Fix style issue
1 files changed, 2 insertions(+), 1 deletions(-)

M st.c
M st.c => st.c +2 -1
@@ 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 */
}