Skip to content

Commit b6a7608

Browse files
committed
Correct rebasing error
Signed-off-by: Ivan Santiago Paunovic <[email protected]>
1 parent 92ec502 commit b6a7608

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

rmw/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ set(rmw_sources
3232
"src/init_options.c"
3333
"src/loaned_message_sequence.c"
3434
"src/names_and_types.c"
35-
"src/node_security_options.c"
35+
"src/security_options.c"
3636
"src/publisher_options.c"
3737
"src/sanity_checks.c"
3838
"src/security_options.c"

rmw/src/security_options.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ rmw_get_default_security_options()
3131
{
3232
rmw_security_options_t default_options = {
3333
RMW_SECURITY_ENFORCEMENT_PERMISSIVE,
34-
NULL};
34+
NULL,
35+
};
3536
return default_options;
3637
}
3738

0 commit comments

Comments
 (0)