Skip to content

Commit

Permalink
fix linter failure
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelarguedas committed Sep 20, 2018
1 parent d262332 commit 5b69117
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/filesystem.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,10 @@ rcutils_join_path(
return NULL;
}

return rcutils_format_string(allocator, "%s%s%s", left_hand_path, RCUTILS_PATH_DELIMITER, right_hand_path);
return rcutils_format_string(
allocator,
"%s%s%s",
left_hand_path, RCUTILS_PATH_DELIMITER, right_hand_path);
}

char *
Expand Down

0 comments on commit 5b69117

Please sign in to comment.