Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
belle-sip
Commits
e91e3e71
Commit
e91e3e71
authored
Jun 30, 2016
by
Ghislain MARY
Browse files
Fix build.
parent
383594e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/belle_sip_object.c
View file @
e91e3e71
...
...
@@ -722,8 +722,8 @@ static void cleanup_pool_stack(void *data){
* Instead, we mark them as detached, so that when the thread that will attempt to destroy them will do it,
* we'll accept (since anyway these object pool are no longer needed.
*/
belle_sip_warning
(
"There were still [%
i
] object pools for thread [%lu] while the thread exited. "
,
belle_sip_list_size
(
*
pool_stack
),
belle_sip_thread_self_id
());
belle_sip_warning
(
"There were still [%
u
] object pools for thread [%lu] while the thread exited. "
,
(
unsigned
int
)
belle_sip_list_size
(
*
pool_stack
),
belle_sip_thread_self_id
());
belle_sip_list_free_with_data
(
*
pool_stack
,(
void
(
*
)(
void
*
))
belle_sip_object_pool_detach_from_thread
);
}
*
pool_stack
=
NULL
;
...
...
Write
Preview
Markdown
is supported
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