Fix indentation of clang-format off blocks

After applying the new clang-format rule in commit 002d39b ("Try to fix
the lambda formatting issue"), some clang-format off blocks need to be
reindented.

Tested:
Build pass. Just removed some whitespaces.

Change-Id: Ib56ebecfaf774fe99230779adba49537c9b58b8d
Signed-off-by: Jiaqing Zhao <jiaqing.zhao@intel.com>
diff --git a/redfish-core/lib/network_protocol.hpp b/redfish-core/lib/network_protocol.hpp
index cfb4451..3cf8e2d 100644
--- a/redfish-core/lib/network_protocol.hpp
+++ b/redfish-core/lib/network_protocol.hpp
@@ -406,16 +406,16 @@
         std::optional<bool> sshEnabled;
 
         // clang-format off
-            if (!json_util::readJsonPatch(
-                    req, asyncResp->res,
-                    "HostName", newHostName,
-                    "NTP/NTPServers", ntpServers,
-                    "NTP/ProtocolEnabled", ntpEnabled,
-                    "IPMI/ProtocolEnabled", ipmiEnabled,
-                    "SSH/ProtocolEnabled", sshEnabled))
-            {
-                return;
-            }
+        if (!json_util::readJsonPatch(
+                req, asyncResp->res,
+                "HostName", newHostName,
+                "NTP/NTPServers", ntpServers,
+                "NTP/ProtocolEnabled", ntpEnabled,
+                "IPMI/ProtocolEnabled", ipmiEnabled,
+                "SSH/ProtocolEnabled", sshEnabled))
+        {
+            return;
+        }
         // clang-format on
 
         asyncResp->res.result(boost::beast::http::status::no_content);
diff --git a/redfish-core/lib/systems.hpp b/redfish-core/lib/systems.hpp
index fdffe6b..9aac379 100644
--- a/redfish-core/lib/systems.hpp
+++ b/redfish-core/lib/systems.hpp
@@ -2973,28 +2973,28 @@
         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/TrustedModuleRequiredToBoot", bootTrustedModuleRequired,
-                        "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/TrustedModuleRequiredToBoot", bootTrustedModuleRequired,
+                "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);