Skip to content

Commit

Permalink
Fixed a trivial bug related to core affinity configuration.
Browse files Browse the repository at this point in the history
Signed-off-by: Shoji Morita <[email protected]>
  • Loading branch information
smorita-esol committed Dec 14, 2023
1 parent 78ee281 commit d94fa54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rcl_yaml_param_parser/src/parse_thread_attr.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ rcutils_ret_t parse_thread_attr(
ret = RCUTILS_RET_ERROR;
goto error;
}
ret = rcutils_thread_core_affinity_init(&core_affinity, 0, allocator);
ret = rcutils_thread_core_affinity_init(&core_affinity, allocator);
if (RCUTILS_RET_OK != ret) {
goto error;
}
Expand Down

0 comments on commit d94fa54

Please sign in to comment.