Fix tabbing on readJsonPatch

Tabbing is wrong.  Fix it.

Tested: Whitespace only.

Change-Id: I4ac63a8bdef4e65ff3a4056bc0fe16e55281222d
Signed-off-by: Ed Tanous <etanous@nvidia.com>
diff --git a/redfish-core/lib/systems.hpp b/redfish-core/lib/systems.hpp
index 8a0b1c3..ae6145a 100644
--- a/redfish-core/lib/systems.hpp
+++ b/redfish-core/lib/systems.hpp
@@ -3196,30 +3196,30 @@
     std::optional<uint64_t> ipsExitTime;
 
     // clang-format off
-                if (!json_util::readJsonPatch(
-                        req, asyncResp->res,
-                        "IndicatorLED", indicatorLed,
-                        "LocationIndicatorActive", locationIndicatorActive,
-                        "AssetTag", assetTag,
-                        "PowerRestorePolicy", powerRestorePolicy,
-                        "PowerMode", powerMode,
-                        "HostWatchdogTimer/FunctionEnabled", wdtEnable,
-                        "HostWatchdogTimer/TimeoutAction", wdtTimeOutAction,
-                        "Boot/BootSourceOverrideTarget", bootSource,
-                        "Boot/BootSourceOverrideMode", bootType,
-                        "Boot/BootSourceOverrideEnabled", bootEnable,
-                        "Boot/AutomaticRetryConfig", bootAutomaticRetry,
-                        "Boot/AutomaticRetryAttempts", bootAutomaticRetryAttempts,
-                        "Boot/TrustedModuleRequiredToBoot", bootTrustedModuleRequired,
-                        "Boot/StopBootOnFault", stopBootOnFault,
-                        "IdlePowerSaver/Enabled", ipsEnable,
-                        "IdlePowerSaver/EnterUtilizationPercent", ipsEnterUtil,
-                        "IdlePowerSaver/EnterDwellTimeSeconds", ipsEnterTime,
-                        "IdlePowerSaver/ExitUtilizationPercent", ipsExitUtil,
-                        "IdlePowerSaver/ExitDwellTimeSeconds", ipsExitTime))
-                {
-                    return;
-                }
+    if (!json_util::readJsonPatch(
+            req, asyncResp->res,
+            "IndicatorLED", indicatorLed,
+            "LocationIndicatorActive", locationIndicatorActive,
+            "AssetTag", assetTag,
+            "PowerRestorePolicy", powerRestorePolicy,
+            "PowerMode", powerMode,
+            "HostWatchdogTimer/FunctionEnabled", wdtEnable,
+            "HostWatchdogTimer/TimeoutAction", wdtTimeOutAction,
+            "Boot/BootSourceOverrideTarget", bootSource,
+            "Boot/BootSourceOverrideMode", bootType,
+            "Boot/BootSourceOverrideEnabled", bootEnable,
+            "Boot/AutomaticRetryConfig", bootAutomaticRetry,
+            "Boot/AutomaticRetryAttempts", bootAutomaticRetryAttempts,
+            "Boot/TrustedModuleRequiredToBoot", bootTrustedModuleRequired,
+            "Boot/StopBootOnFault", stopBootOnFault,
+            "IdlePowerSaver/Enabled", ipsEnable,
+            "IdlePowerSaver/EnterUtilizationPercent", ipsEnterUtil,
+            "IdlePowerSaver/EnterDwellTimeSeconds", ipsEnterTime,
+            "IdlePowerSaver/ExitUtilizationPercent", ipsExitUtil,
+            "IdlePowerSaver/ExitDwellTimeSeconds", ipsExitTime))
+    {
+        return;
+    }
     // clang-format on
 
     asyncResp->res.result(boost::beast::http::status::no_content);