Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
91e93a96
Commit
91e93a96
authored
7 years ago
by
Paul Sokolovsky
Browse files
Options
Downloads
Patches
Plain Diff
extmod/moduzlib: decompress: Remove stale "(void)n_args".
n_args is now actually used in this function.
parent
c4e3a03f
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
extmod/moduzlib.c
+0
-1
0 additions, 1 deletion
extmod/moduzlib.c
with
0 additions
and
1 deletion
extmod/moduzlib.c
+
0
−
1
View file @
91e93a96
...
@@ -143,7 +143,6 @@ STATIC const mp_obj_type_t decompio_type = {
...
@@ -143,7 +143,6 @@ STATIC const mp_obj_type_t decompio_type = {
};
};
STATIC
mp_obj_t
mod_uzlib_decompress
(
size_t
n_args
,
const
mp_obj_t
*
args
)
{
STATIC
mp_obj_t
mod_uzlib_decompress
(
size_t
n_args
,
const
mp_obj_t
*
args
)
{
(
void
)
n_args
;
mp_obj_t
data
=
args
[
0
];
mp_obj_t
data
=
args
[
0
];
mp_buffer_info_t
bufinfo
;
mp_buffer_info_t
bufinfo
;
mp_get_buffer_raise
(
data
,
&
bufinfo
,
MP_BUFFER_READ
);
mp_get_buffer_raise
(
data
,
&
bufinfo
,
MP_BUFFER_READ
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment