diff options
author | Seonah Moon <seonah1.moon@samsung.com> | 2016-05-12 18:26:05 +0900 |
---|---|---|
committer | Seonah Moon <seonah1.moon@samsung.com> | 2016-05-12 18:26:24 +0900 |
commit | 3cd1a3e45d0a94ed911783d9028eccff98d7ffc8 (patch) | |
tree | c051e8957afb834ac2ed562e1c96b8d465888e01 | |
parent | 4c3c24505b5f1055e6a0bf0977c1d03aeb624976 (diff) | |
download | http-3cd1a3e45d0a94ed911783d9028eccff98d7ffc8.tar.gz http-3cd1a3e45d0a94ed911783d9028eccff98d7ffc8.tar.bz2 http-3cd1a3e45d0a94ed911783d9028eccff98d7ffc8.zip |
Fix build error(64bit)submit/tizen/20160512.095454accepted/tizen/wearable/20160513.004729accepted/tizen/mobile/20160513.004802accepted/tizen/common/20160512.150337
Change-Id: I17beb616033cc68bf5e0ad12f2e58add914205ec
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
-rw-r--r-- | packaging/capi-network-http.spec | 2 | ||||
-rw-r--r-- | test/http_test.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packaging/capi-network-http.spec b/packaging/capi-network-http.spec index 7e348f0..e586ffd 100644 --- a/packaging/capi-network-http.spec +++ b/packaging/capi-network-http.spec @@ -1,6 +1,6 @@ Name: capi-network-http Summary: Http Framework -Version: 0.0.4 +Version: 0.0.5 Release: 0 Group: System/Network License: Apache-2.0 diff --git a/test/http_test.c b/test/http_test.c index 8c370c7..48e6e19 100644 --- a/test/http_test.c +++ b/test/http_test.c @@ -211,7 +211,7 @@ int test_simple_post(void) http_transaction_set_ready_to_write(transaction, TRUE); http_transaction_request_write_body(transaction, post_msg); - sprintf(field_value, "%d", strlen(post_msg)); + sprintf(field_value, "%d", (int)strlen(post_msg)); printf("[dbg] post size (%s)\n", field_value); http_transaction_header_add_field(transaction, "Content-Length", field_value); |