summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander\ Kovalenko <al.kovalenko@samsung.com>2017-10-19 17:37:13 +0300
committerAlexander\ Kovalenko <al.kovalenko@samsung.com>2017-10-19 17:37:13 +0300
commitf94e5b49ca59b525f1b4808e4f71c796c19ab313 (patch)
treedc5874516af7354fb1f2edba39ec7a813da8eeda
parent373b3ec5f0c8034a6f3bbe97758c90718d714117 (diff)
downloadapptray-widget-f94e5b49ca59b525f1b4808e4f71c796c19ab313.tar.gz
apptray-widget-f94e5b49ca59b525f1b4808e4f71c796c19ab313.tar.bz2
apptray-widget-f94e5b49ca59b525f1b4808e4f71c796c19ab313.zip
TizenRefApp-9646[App Shortcut Widget] Fix code style issues
Change-Id: Ifc412c7dbf1752f4208296e714f4e539c5119132
-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; \
} \