Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
DiSL
DiSL
Commits
b8190e69
Commit
b8190e69
authored
Feb 15, 2022
by
Lubomir Bulej
Browse files
OCD fix in list.h
parent
22a6f9c5
Pipeline
#19868
failed with stages
in 4 minutes and 46 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src-disl-agent/list.h
View file @
b8190e69
...
...
@@ -429,8 +429,9 @@ list_find (struct list * head, list_match_fn match, void * data) {
struct
list
*
item
;
list_for_each
(
item
,
head
)
{
if
(
match
(
item
,
data
))
if
(
match
(
item
,
data
))
{
return
item
;
}
}
return
NULL
;
...
...
src-shvm-agent/disl/list.h
View file @
b8190e69
...
...
@@ -429,8 +429,9 @@ list_find (struct list * head, list_match_fn match, void * data) {
struct
list
*
item
;
list_for_each
(
item
,
head
)
{
if
(
match
(
item
,
data
))
if
(
match
(
item
,
data
))
{
return
item
;
}
}
return
NULL
;
...
...
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