Skip to content

Commit

Permalink
Fix indent for linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ruffsl committed Nov 5, 2018
1 parent 52fc666 commit 9d2cd62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rcl/src/rcl/node.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ const char * rcl_get_secure_root(
char * node_secure_root = NULL;
if (ros_secure_node_override) {
node_secure_root =
(char *)allocator->allocate(strlen(ros_secure_root_env) + 1, allocator->state);
(char *)allocator->allocate(strlen(ros_secure_root_env) + 1, allocator->state);
strcpy(node_secure_root, ros_secure_root_env);
// TODO(ros2team): This make an assumption on the value and length of the root namespace.
// This should likely come from another (rcl/rmw?) function for reuse.
Expand Down

0 comments on commit 9d2cd62

Please sign in to comment.