summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Olshevskyi <i.olshevskyi@samsung.com>2017-10-20 11:36:15 +0000
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>2017-10-20 11:36:15 +0000
commit1fb65cc232ec980d265503a64b18d513a69617c9 (patch)
tree357aad9a7d2279c17cc23e2c0c2f19e1f73dd606
parent09e42c710836c0d93528e164f4942c3309db9108 (diff)
parentf94e5b49ca59b525f1b4808e4f71c796c19ab313 (diff)
downloadapptray-widget-1fb65cc232ec980d265503a64b18d513a69617c9.tar.gz
apptray-widget-1fb65cc232ec980d265503a64b18d513a69617c9.tar.bz2
apptray-widget-1fb65cc232ec980d265503a64b18d513a69617c9.zip
Merge "TizenRefApp-9646[App Shortcut Widget] Fix code style issues" into tizen_4.0tizen_4.0.IoT.p2_releasesubmit/tizen_4.0/20171027.072849tizen_4.0
-rwxr-xr-xapptray-widget-app/inc/apptray_wgt_app_log.h14
-rwxr-xr-xapptray-widget/inc/apptray_widget_log.h14
2 files changed, 14 insertions, 14 deletions
diff --git a/apptray-widget-app/inc/apptray_wgt_app_log.h b/apptray-widget-app/inc/apptray_wgt_app_log.h
index a23c603..413a91a 100755
--- a/apptray-widget-app/inc/apptray_wgt_app_log.h
+++ b/apptray-widget-app/inc/apptray_wgt_app_log.h
@@ -100,7 +100,7 @@
} while (0)
#define retvm_if(expr, val, fmt, arg...) do { \
- if(expr) { \
+ if (expr) { \
_E(fmt, ##arg); \
_E("(%s) -> %s() return", #expr, __FUNCTION__); \
return val; \
@@ -108,14 +108,14 @@
} while (0)
#define retv_if(expr, val) do { \
- if(expr) { \
+ if (expr) { \
_E("(%s) -> %s() return", #expr, __FUNCTION__); \
return (val); \
} \
} while (0)
#define retm_if(expr, fmt, arg...) do { \
- if(expr) { \
+ if (expr) { \
_E(fmt, ##arg); \
_E("(%s) -> %s() return", #expr, __FUNCTION__); \
return; \
@@ -123,28 +123,28 @@
} 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; \
} \
diff --git a/apptray-widget/inc/apptray_widget_log.h b/apptray-widget/inc/apptray_widget_log.h
index 16614ca..e64bac3 100755
--- a/apptray-widget/inc/apptray_widget_log.h
+++ b/apptray-widget/inc/apptray_widget_log.h
@@ -101,7 +101,7 @@
} while (0)
#define retvm_if(expr, val, fmt, arg...) do { \
- if(expr) { \
+ if (expr) { \
_E(fmt, ##arg); \
_E("(%s) -> %s() return", #expr, __FUNCTION__); \
return val; \
@@ -109,14 +109,14 @@
} while (0)
#define retv_if(expr, val) do { \
- if(expr) { \
+ if (expr) { \
_E("(%s) -> %s() return", #expr, __FUNCTION__); \
return (val); \
} \
} while (0)
#define retm_if(expr, fmt, arg...) do { \
- if(expr) { \
+ if (expr) { \
_E(fmt, ##arg); \
_E("(%s) -> %s() return", #expr, __FUNCTION__); \
return; \
@@ -124,28 +124,28 @@
} 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; \
} \