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
1b44987d
Commit
1b44987d
authored
Dec 22, 2016
by
Paul Sokolovsky
Browse files
extmod/modutimeq: Fix warning about unused param.
parent
64b1d5f8
Changes
1
Show whitespace changes
Inline
Side-by-side
extmod/modutimeq.c
View file @
1b44987d
...
...
@@ -117,6 +117,7 @@ STATIC void heap_siftup(mp_obj_utimeq_t *heap, mp_uint_t pos) {
}
STATIC
mp_obj_t
mod_utimeq_heappush
(
size_t
n_args
,
const
mp_obj_t
*
args
)
{
(
void
)
n_args
;
mp_obj_t
heap_in
=
args
[
0
];
mp_obj_utimeq_t
*
heap
=
get_heap
(
heap_in
);
if
(
heap
->
len
==
heap
->
alloc
)
{
...
...
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