Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
python-cellframe
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
5
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cellframe
python-cellframe
Commits
ebcdc447
Commit
ebcdc447
authored
8 months ago
by
Roman Khlopkov
🔜
Browse files
Options
Downloads
Patches
Plain Diff
[*] Compiler warnings fix
parent
38cc5603
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CellFrame/python-cellframe_common.c
+1
-1
1 addition, 1 deletion
CellFrame/python-cellframe_common.c
cellframe-sdk
+1
-1
1 addition, 1 deletion
cellframe-sdk
with
2 additions
and
2 deletions
CellFrame/python-cellframe_common.c
+
1
−
1
View file @
ebcdc447
...
...
@@ -71,7 +71,7 @@ PyObject *python_get_config_item(dap_config_t* a_config, const char *a_section,
}
case
DAP_CONFIG_ITEM_ARRAY
:
{
uint16_t
l_values_count
=
0
;
char
**
l_values
=
dap_config_get_array_str
(
a_config
,
a_section
,
a_key
,
&
l_values_count
);
const
char
**
l_values
=
dap_config_get_array_str
(
a_config
,
a_section
,
a_key
,
&
l_values_count
);
PyObject
*
obj_list
=
PyList_New
(
l_values_count
);
for
(
uint16_t
i
=
0
;
i
<
l_values_count
;
i
++
)
{
const
char
*
l_value
=
l_values
[
i
];
...
...
This diff is collapsed.
Click to expand it.
cellframe-sdk
@
a2ddc1b2
Compare
55dcc5d6
...
a2ddc1b2
Subproject commit
55dcc5d64f087b9bb6123ea32462e793e77d9a9f
Subproject commit
a2ddc1b21683fcc069b2ca251dae90b319bfddfe
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