Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
ca7af9a7
Commit
ca7af9a7
authored
Dec 28, 2016
by
Damien George
Browse files
py/parsenum: Fix warning for signed/unsigned comparison.
parent
43384ad7
Changes
1
Show whitespace changes
Inline
Side-by-side
py/parsenum.c
View file @
ca7af9a7
...
...
@@ -92,7 +92,7 @@ mp_obj_t mp_parse_num_integer(const char *restrict str_, size_t len, int base, m
break
;
}
}
if
(
dig
>=
base
)
{
if
(
dig
>=
(
mp_uint_t
)
base
)
{
break
;
}
...
...
Write
Preview
Supports
Markdown
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