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
46e98d9e
Commit
46e98d9e
authored
8 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
unix: Convert mp_uint_t to size_t for use of mp_obj_list_get.
parent
a8a3ab48
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
unix/main.c
+1
-1
1 addition, 1 deletion
unix/main.c
with
1 addition
and
1 deletion
unix/main.c
+
1
−
1
View file @
46e98d9e
...
...
@@ -437,7 +437,7 @@ MP_NOINLINE int main_(int argc, char **argv) {
path
=
"~/.micropython/lib:/usr/lib/micropython"
;
#endif
}
mp_uint
_t
path_num
=
1
;
// [0] is for current dir (or base dir of the script)
size
_t
path_num
=
1
;
// [0] is for current dir (or base dir of the script)
if
(
*
path
==
':'
)
{
path_num
++
;
}
...
...
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