apply coding convention 10/64410/1 accepted/tizen/common/20160401.075721 accepted/tizen/common/20160824.154431 accepted/tizen/ivi/20160405.011545 accepted/tizen/ivi/20160718.104455 accepted/tizen/ivi/20160824.055218 accepted/tizen/mobile/20160405.011451 accepted/tizen/mobile/20160718.104357 accepted/tizen/mobile/20160824.055150 accepted/tizen/tv/20160405.011508 accepted/tizen/tv/20160718.104344 accepted/tizen/tv/20160824.055155 accepted/tizen/wearable/20160405.011524 accepted/tizen/wearable/20160718.104401 accepted/tizen/wearable/20160824.055159 submit/tizen/20160401.045343 submit/tizen/20160718.023723 submit/tizen/20160824.023417
authorHyihong Chae <hh.chae@samsung.com>
Fri, 1 Apr 2016 04:48:37 +0000 (13:48 +0900)
committerHyihong Chae <hh.chae@samsung.com>
Fri, 1 Apr 2016 04:48:37 +0000 (13:48 +0900)
Change-Id: I84567637a1a18aa88340b8b85cc6d1eb7bee4c73
Signed-off-by: HyiHong Chae <hh.chae@samsung.com>
include/smartcard_debug.h [changed mode: 0644->0755]
packaging/capi-network-smartcard.spec

old mode 100644 (file)
new mode 100755 (executable)
index 1415da1..ed0fad1
 #define COLOR_END   "\033[0;m"
 
 #define _ERR(fmt, ...) \
-       do \
-       { \
+       do { \
                LOGE(COLOR_RED fmt COLOR_END, ##__VA_ARGS__); \
-       } \
-       while (0)
+       } while (0)
 
 #define _INFO(fmt, ...) \
-       do \
-       { \
+       do { \
                LOGI(COLOR_GREEN fmt COLOR_END, ##__VA_ARGS__); \
-       } \
-       while (0)
+       } while (0)
 
 #define _WARN(fmt, ...) \
-       do \
-       { \
+       do { \
                LOGI(COLOR_BROWN fmt COLOR_END, ##__VA_ARGS__); \
-       } \
-       while (0)
+       } while (0)
 
 #define _DBG(fmt, ...) \
-       do \
-       { \
+       do { \
                LOGD(fmt, ##__VA_ARGS__); \
-       } \
-       while (0)
+       } while (0)
 
 #define _BEGIN() \
-       do \
-       { \
+       do { \
                LOGD(COLOR_BLUE "BEGIN >>>>" COLOR_END); \
-       } \
-       while (0)
+       } while (0)
 
 #define _END() \
-       do \
-       { \
+       do { \
                LOGD(COLOR_BLUE "END <<<<" COLOR_END); \
-       } \
-       while (0)
+       } while (0)
 
 #define cond_expr_ret(expr, val) \
-       do {\
+       do { \
                if (expr) { \
                        _ERR("[precond fail] expr : %s, ret : %d\n", #expr, val); \
                        return (val); \
                } \
-       } while(0)
+       } while (0)
 
 #define cond_ret(val) \
-       do {\
-               if(val) { \
+       do { \
+               if (val) { \
                        _ERR("[precond fail] ret : %d\n", val); \
                        return (val); \
                } \
-       } while(0)
+       } while (0)
 
 #endif
index 3da980e..f4119eb 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       capi-network-smartcard
 Summary:    A Smartcard library in Native API
-Version:    0.0.5
+Version:    0.0.6
 Release:    1
 Group:      Network & Connectivity/Smartcard
 License:    Apache-2.0