summaryrefslogtreecommitdiff
path: root/extmod/modubinascii.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-07-19 13:12:10 +1000
committerDamien George <damien.p.george@gmail.com>2017-07-19 13:12:10 +1000
commit761e4c7ff62896c7d8f8c3dfc3cc98a4cc4f2f6f (patch)
treeca794059e302b1947125d36f64c667acdde6ddbe /extmod/modubinascii.c
parentc972c60dbe72d7448faff7f631dfb798b694093e (diff)
all: Remove trailing spaces, per coding conventions.
Diffstat (limited to 'extmod/modubinascii.c')
-rw-r--r--extmod/modubinascii.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/modubinascii.c b/extmod/modubinascii.c
index cf250d27f..4dda3c442 100644
--- a/extmod/modubinascii.c
+++ b/extmod/modubinascii.c
@@ -118,7 +118,7 @@ mp_obj_t mod_binascii_a2b_base64(mp_obj_t data) {
vstr_init_len(&vstr, 0);
}
else {
- vstr_init_len(&vstr, ((bufinfo.len / 4) * 3) - ((in[bufinfo.len-1] == '=') ? ((in[bufinfo.len-2] == '=') ? 2 : 1 ) : 0));
+ vstr_init_len(&vstr, ((bufinfo.len / 4) * 3) - ((in[bufinfo.len-1] == '=') ? ((in[bufinfo.len-2] == '=') ? 2 : 1 ) : 0));
}
byte *out = (byte*)vstr.buf;
for (mp_uint_t i = bufinfo.len; i; i -= 4) {