From: Jonathan Rajotte Date: Fri, 22 May 2020 15:27:37 +0000 (-0400) Subject: Clean-up: action-executor: typo and missing tab X-Git-Tag: v2.13.0-rc1~436 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=0db0f8e075e3790a2707736d2a4d086b123f3160;hp=fc43866a40edfc7971a626a932da1afffc05a6c4 Clean-up: action-executor: typo and missing tab Signed-off-by: Jonathan Rajotte Signed-off-by: Jérémie Galarneau Change-Id: I5646fae2db98a3c8ffa0ba92aff9815f4ce0cf53 --- diff --git a/src/bin/lttng-sessiond/action-executor.c b/src/bin/lttng-sessiond/action-executor.c index db16f8049..d1369375d 100644 --- a/src/bin/lttng-sessiond/action-executor.c +++ b/src/bin/lttng-sessiond/action-executor.c @@ -548,7 +548,7 @@ static void *action_executor_thread(void *_data) continue; } - /* Pop item from front of the listwith work lock held. */ + /* Pop item from front of the list with work lock held. */ work_item = cds_list_first_entry(&executor->work.list, struct action_work_item, list_node); cds_list_del(&work_item->list_node); @@ -670,8 +670,7 @@ enum action_executor_status action_executor_enqueue( if (executor->work.pending_count >= MAX_QUEUED_WORK_COUNT) { /* Most likely spammy, remove if it is the case. */ DBG("Refusing to enqueue action for trigger `%p` as work item %" PRIu64 - " (overflow)", - trigger, work_item_id); + " (overflow)", trigger, work_item_id); executor_status = ACTION_EXECUTOR_STATUS_OVERFLOW; goto error_unlock; }