From c09f6428d57ea715ad26067cc4c3e581343eea9b Mon Sep 17 00:00:00 2001 From: jwang11 Date: Tue, 9 Jan 2018 23:44:40 +0800 Subject: [PATCH] Remove the slash behind SET_CLEAR MACRO (#206) In some case, extra slash may casue choas. Fix it anyway Signed-off-by: jwang --- rcl/src/rcl/wait.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcl/src/rcl/wait.c b/rcl/src/rcl/wait.c index cc66f27..2a23d09 100644 --- a/rcl/src/rcl/wait.c +++ b/rcl/src/rcl/wait.c @@ -276,7 +276,7 @@ rcl_wait_set_get_allocator(const rcl_wait_set_t * wait_set, rcl_allocator_t * al (void *)wait_set->Type ## s, \ 0, \ sizeof(rcl_ ## Type ## _t *) * wait_set->size_of_ ## Type ## s); \ - wait_set->impl->Type ## _index = 0; \ + wait_set->impl->Type ## _index = 0; #define SET_CLEAR_RMW(Type, RMWStorage, RMWCount) \ /* Also clear the rmw storage. */ \