From 449851c694d5c7c114bea784d72c8e84a6432f01 Mon Sep 17 00:00:00 2001 From: Alfred Gedeon Date: Mon, 20 Nov 2023 17:08:13 -0800 Subject: [PATCH] clang format --- samples/jobs/describe_job_execution/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/jobs/describe_job_execution/main.cpp b/samples/jobs/describe_job_execution/main.cpp index 1ddd53cef..39c9e8fee 100644 --- a/samples/jobs/describe_job_execution/main.cpp +++ b/samples/jobs/describe_job_execution/main.cpp @@ -207,14 +207,14 @@ int main(int argc, char *argv[]) { auto OnSubscribeToStartNextPendingJobExecutionAcceptedResponse = - [&](StartNextJobExecutionResponse *response, int ioErr) { + [&](StartNextJobExecutionResponse *response, int ioErr) { fprintf(stdout, "Start Job %s\n", response->Execution.value().JobId.value().c_str()); currentJobId = response->Execution->JobId.value(); currentExecutionNumber = response->Execution->ExecutionNumber.value(); currentVersionNumber = response->Execution->VersionNumber.value(); pendingExecutionPromise.set_value(); - }; + }; StartNextPendingJobExecutionSubscriptionRequest subscriptionRequest; subscriptionRequest.ThingName = cmdData.input_thingName; @@ -245,8 +245,8 @@ int main(int argc, char *argv[]) { pendingExecutionPromise = std::promise(); - auto OnSubscribeToUpdateJobExecutionAcceptedResponse = - [&](UpdateJobExecutionResponse *response, int iotErr) { + auto OnSubscribeToUpdateJobExecutionAcceptedResponse = [&](UpdateJobExecutionResponse *response, + int iotErr) { fprintf(stdout, "Marked Job %s IN_PROGRESS", currentJobId.c_str()); pendingExecutionPromise.set_value(); };