From: Jeesun Kim Date: Fri, 1 Apr 2016 02:31:29 +0000 (+0900) Subject: Apply coding rule X-Git-Tag: submit/tizen/20160406.000135~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F88%2F64388%2F1;p=platform%2Fcore%2Ftelephony%2Fphonenumber-utils.git Apply coding rule Change-Id: Ie8784a902a3d1ae5848eb302421757a827e7bcfc --- diff --git a/common/phn-log.h b/common/phn-log.h index 84d45e2..72f16a5 100644 --- a/common/phn-log.h +++ b/common/phn-log.h @@ -95,8 +95,8 @@ if (expr) { \ ERR("(%s)", #expr); \ return; \ - }\ - } while(0) + } \ + } while (0) #define RETV_IF(expr, val) \ do {\ @@ -104,15 +104,15 @@ 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 {\ @@ -120,7 +120,7 @@ ERR(fmt, ##arg); \ return (val); \ } \ - } while(0) + } while (0) #define ERR_IF(expr) \ do { \