summaryrefslogtreecommitdiff
path: root/email-core/email-core-account.c
diff options
context:
space:
mode:
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;