Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
micropython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
micropython
Commits
1c6b442d
Commit
1c6b442d
authored
Aug 21, 2017
by
Damien George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
extmod/modubinascii: Don't post-increment variable that won't be used.
parent
f5309fc4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
extmod/modubinascii.c
extmod/modubinascii.c
+1
-1
No files found.
extmod/modubinascii.c
View file @
1c6b442d
...
...
@@ -194,7 +194,7 @@ mp_obj_t mod_binascii_b2a_base64(mp_obj_t data) {
*
out
++
=
(
in
[
0
]
&
0x03
)
<<
4
;
*
out
++
=
64
;
}
*
out
++
=
64
;
*
out
=
64
;
}
// Second pass, we convert number base 64 values to actual base64 ascii encoding
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment