[Attach-panel] Fixed coding style error 09/64409/1 accepted/tizen/mobile/20160405.011920 submit/tizen/20160401.080612
authormoon87.park <moon87.park@samsung.com>
Fri, 1 Apr 2016 04:48:50 +0000 (13:48 +0900)
committermoon87.park <moon87.park@samsung.com>
Fri, 1 Apr 2016 04:48:50 +0000 (13:48 +0900)
Change-Id: I8ebd9b1f52aa86ae5f9396d33541a2a49a8cb7b1

include/log.h
sample/sample.h

index 8d7bfeb8c3e6a1f256665eea52d0b0544ae8f6fa..43b19cb1c2ba1ecc12d71432d21c2f839caefed8 100644 (file)
 #endif
 
 #define retv_if(expr, val) do { \
-       if(expr) { \
+       if (expr) { \
                _E("(%s) -> %s() return", #expr, __FUNCTION__); \
                return (val); \
        } \
 } while (0)
 
 #define ret_if(expr) do { \
-       if(expr) { \
+       if (expr) { \
                _E("(%s) -> %s() return", #expr, __FUNCTION__); \
                return; \
        } \
 } while (0)
 
 #define goto_if(expr, val) do { \
-       if(expr) { \
+       if (expr) { \
                _E("(%s) -> goto", #expr); \
                goto val; \
        } \
 } while (0)
 
 #define break_if(expr) { \
-       if(expr) { \
+       if (expr) { \
                _E("(%s) -> break", #expr); \
                break; \
        } \
 }
 
 #define continue_if(expr) { \
-       if(expr) { \
+       if (expr) { \
                _E("(%s) -> continue", #expr); \
                continue; \
        } \
index 5bc7735c64a5e97ea9c821461d9835f3a37682d1..a1f0d0064ef005b45e99b11b8a1ba92d674974e4 100644 (file)
 #endif
 
 #define retv_if(expr, val) do { \
-       if(expr) { \
+       if (expr) { \
                _E("(%s) -> %s() return", #expr, __FUNCTION__); \
                return (val); \
        } \
 } while (0)
 
 #define ret_if(expr) do { \
-       if(expr) { \
+       if (expr) { \
                _E("(%s) -> %s() return", #expr, __FUNCTION__); \
                return; \
        } \
 } while (0)
 
 #define goto_if(expr, val) do { \
-       if(expr) { \
+       if (expr) { \
                _E("(%s) -> goto", #expr); \
                goto val; \
        } \