Indent modified by static analysis
authorJaehong Jo <jaehong.jo@samsung.com>
Thu, 11 Aug 2016 23:23:06 +0000 (08:23 +0900)
committerAshok Babu Channa <ashok.channa@samsung.com>
Wed, 17 Aug 2016 06:45:14 +0000 (06:45 +0000)
Change-Id: I402335bc40cbc8b570a7317139f02f765d918956
Signed-off-by: Jaehong Jo <jaehong.jo@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/10311
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Ashok Babu Channa <ashok.channa@samsung.com>
resource/csdk/connectivity/common/inc/cacommonutil.h

index eced7d9..220ca75 100644 (file)
@@ -38,7 +38,8 @@ extern "C"
  * @param  ret  return value
  */
 #define VERIFY_NON_NULL_RET(arg, log_tag, log_message, ret) \
-    if (NULL == (arg)) { \
+    if (NULL == (arg)) \
+    { \
         OIC_LOG_V(ERROR, (log_tag), "Invalid input:%s", (log_message)); \
         return (ret); \
     } \