summaryrefslogtreecommitdiff
path: root/email-core/email-core-account.c
diff options
context:
space:
mode:
authorSameer Prakash Pradhan <sp.pradhan@samsung.com>2018-12-11 18:39:37 +0530
committerSameer Prakash Pradhan <sp.pradhan@samsung.com>2018-12-12 16:09:39 +0530
commit025c68c6ac141e042e44c68a50fb387421d89759 (patch)
tree25f82f55f220f11e346ee1999a95efbe8e5204ef /email-core/email-core-account.c
parent096bda73775f5389b393f4029f5d14fccf0ac448 (diff)
downloademail-service-025c68c6ac141e042e44c68a50fb387421d89759.tar.gz
email-service-025c68c6ac141e042e44c68a50fb387421d89759.tar.bz2
email-service-025c68c6ac141e042e44c68a50fb387421d89759.zip
[Non-ACR][email-service][Updating for Dlog API format check enforcement]submit/tizen/20181214.061228submit/tizen/20181212.095503accepted/tizen/unified/20181217.142158
Signed-off-by: Sameer Prakash Pradhan <sp.pradhan@samsung.com> Change-Id: Ic9c6995b653aa87565360afee1f890790ee75368
Diffstat (limited to 'email-core/email-core-account.c')
-rwxr-xr-xemail-core/email-core-account.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/email-core/email-core-account.c b/email-core/email-core-account.c
index 2386f88..711d166 100755
--- a/email-core/email-core-account.c
+++ b/email-core/email-core-account.c
@@ -358,7 +358,7 @@ INTERNAL_FUNC int emcore_validate_account(char *multi_user_name, int account_id,
if (account_id <= 0) {
- EM_DEBUG_EXCEPTION("account_id[%p]", account_id);
+ EM_DEBUG_EXCEPTION("account_id[%d]", account_id);
err = EMAIL_ERROR_INVALID_PARAM;
goto FINISH_OFF;
}
@@ -1402,7 +1402,7 @@ size_t emcore_curl_write_callback(char* data, size_t size, size_t nmemb, void* t
size_t received_length = size * nmemb;
if (*result_string == NULL) {
- EM_DEBUG_LOG("received_length[%d]", received_length);
+ EM_DEBUG_LOG("received_length[%zu]", received_length);
*result_string = em_malloc(received_length + 1);
} else {
int new_buffer_length = 0;