Apply coding rule 88/64388/1
authorJeesun Kim <iamjs.kim@samsung.com>
Fri, 1 Apr 2016 02:31:29 +0000 (11:31 +0900)
committerJeesun Kim <iamjs.kim@samsung.com>
Fri, 1 Apr 2016 02:31:45 +0000 (11:31 +0900)
Change-Id: Ie8784a902a3d1ae5848eb302421757a827e7bcfc

common/phn-log.h

index 84d45e2ad67606c0bef29da215b387015e288a8e..72f16a529ffdfa0fd585777355509cdb751b19e7 100644 (file)
@@ -95,8 +95,8 @@
                if (expr) { \
                        ERR("(%s)", #expr); \
                        return; \
-               }\
-       } while(0)
+               } \
+       } while (0)
 
 #define RETV_IF(expr, val) \
        do {\
                        ERR("(%s)", #expr); \
                        return (val); \
                } \
-       } while(0)
+       } while (0)
 
 #define RETM_IF(expr, fmt, arg...) \
        do {\
                if (expr) { \
                        ERR(fmt, ##arg); \
                        return; \
-               }\
-       } while(0)
+               } \
+       } while (0)
 
 #define RETVM_IF(expr, val, fmt, arg...) \
        do {\
                        ERR(fmt, ##arg); \
                        return (val); \
                } \
-       } while(0)
+       } while (0)
 
 #define ERR_IF(expr) \
        do { \