fix coding rules violation 78/73878/1 accepted/tizen/common/20160610.182348 accepted/tizen/ivi/20160613.021741 accepted/tizen/mobile/20160613.021735 accepted/tizen/tv/20160613.021743 accepted/tizen/wearable/20160613.021725 submit/tizen/20160610.021121
authorHyihong Chae <hh.chae@samsung.com>
Fri, 10 Jun 2016 01:55:25 +0000 (10:55 +0900)
committerHyihong Chae <hh.chae@samsung.com>
Fri, 10 Jun 2016 01:55:25 +0000 (10:55 +0900)
Change-Id: Ica5a8f0531f6a0e0512784f5388c6bed72bf63eb
Signed-off-by: HyiHong Chae <hh.chae@samsung.com>
packaging/capi-network-nfc.spec
src/nfc_card_emulation.c

index 729791d..9a35b5e 100644 (file)
@@ -1,6 +1,6 @@
 Name:       capi-network-nfc
 Summary:    A NFC library in Native API
-Version:    0.3.2
+Version:    0.3.3
 Release:    0
 Group:      Network & Connectivity/NFC
 License:    Apache-2.0
index 976176d..a332f65 100755 (executable)
@@ -461,11 +461,10 @@ int nfc_se_remove_route_for_aid_internal(const char* pkg_name, const char *aid)
        /* LCOV_EXCL_START */
        CHECK_INIT();
 
-       if (aid == NULL) {
+       if (aid == NULL)
                result = net_nfc_client_se_remove_package_aids_sync(pkg_name);
-       } else {
+       else
                result = net_nfc_client_se_remove_route_aid_sync(pkg_name, aid);
-       }
 
        return nfc_common_convert_error_code(__func__, result);
        /* LCOV_EXCL_STOP */