From bf36e7f8f987e9c244dfd67f527b4c178fb37643 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 7 Sep 2022 18:20:55 +0200 Subject: [PATCH] run afmt --- example/controller/FsfwTestController.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/example/controller/FsfwTestController.cpp b/example/controller/FsfwTestController.cpp index c2c89c9..a485e44 100644 --- a/example/controller/FsfwTestController.cpp +++ b/example/controller/FsfwTestController.cpp @@ -67,7 +67,8 @@ ReturnValue_t FsfwTestController::initializeAfterTaskCreation() { if (result != returnvalue::OK) { return result; } - auto *device0 = ObjectManager::instance()->get(deviceDataset0.getCreatorObjectId()); + auto *device0 = + ObjectManager::instance()->get(deviceDataset0.getCreatorObjectId()); if (device0 == nullptr) { #if FSFW_CPP_OSTREAM_ENABLED == 1 sif::warning << "TestController::initializeAfterTaskCreation: Test device handler 0 " @@ -89,7 +90,8 @@ ReturnValue_t FsfwTestController::initializeAfterTaskCreation() { getCommandQueue(), false); } - auto *device1 = ObjectManager::instance()->get(deviceDataset0.getCreatorObjectId()); + auto *device1 = + ObjectManager::instance()->get(deviceDataset0.getCreatorObjectId()); if (device1 == nullptr) { #if FSFW_CPP_OSTREAM_ENABLED == 1 sif::warning << "TestController::initializeAfterTaskCreation: Test device handler 1 "