Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
celllframe-node
Manage
Activity
Members
Labels
Plan
Issues
5
Issue boards
Milestones
Code
Merge requests
17
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
celllframe-node
Commits
80d79513
Commit
80d79513
authored
4 years ago
by
dmitriy.gerasimov
Browse files
Options
Downloads
Plain Diff
Merge branch 'bugs-4324' into 'master'
Bugs 4324 See merge request
!176
parents
b069b6b9
eaa657e3
No related branches found
No related tags found
1 merge request
!176
Bugs 4324
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cellframe-sdk
+1
-1
1 addition, 1 deletion
cellframe-sdk
python-cellframe
+1
-1
1 addition, 1 deletion
python-cellframe
sources/main.c
+2
-2
2 additions, 2 deletions
sources/main.c
with
4 additions
and
4 deletions
cellframe-sdk
@
725b2ebd
Compare
1bd4525a
...
725b2ebd
Subproject commit
1bd4525ae4cdb78e9f1f86806ccb5752296a6ea7
Subproject commit
725b2ebd0e12933fb6629e97bc95476fa5f14841
This diff is collapsed.
Click to expand it.
python-cellframe
@
b854535f
Compare
d2d1011c
...
b854535f
Subproject commit
d2d1011c82454a886c3e66b0580ae65c89540076
Subproject commit
b854535f5ecc62282b4bd57754ddbf7a4623667e
This diff is collapsed.
Click to expand it.
sources/main.c
+
2
−
2
View file @
80d79513
...
...
@@ -260,12 +260,12 @@ int main( int argc, const char **argv )
return
-
81
;
}
if
(
dap_stream_init
(
dap_config_get_item_bool_default
(
g_config
,
"general"
,
"debug_dump_stream_headers"
,
false
)
)
!=
0
)
{
if
(
dap_stream_init
(
g_config
)
!=
0
)
{
log_it
(
L_CRITICAL
,
"Can't init stream server module"
);
return
-
82
;
}
if
(
dap_stream_ctl_init
(
g_config
,
32
)
!=
0
){
if
(
dap_stream_ctl_init
(
32
)
!=
0
){
log_it
(
L_CRITICAL
,
"Can't init stream control module"
);
return
-
83
;
}
...
...
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