diff options
author | Seonah Moon <seonah1.moon@samsung.com> | 2018-12-21 13:58:12 +0900 |
---|---|---|
committer | Seonah Moon <seonah1.moon@samsung.com> | 2018-12-21 13:58:16 +0900 |
commit | 518b79eadcc3eb8d61568185465ceb48d3073c9a (patch) | |
tree | 88ea5df7ba4ca7d689ff9a5d9140aa5d37ce166a | |
parent | b5076013c1a5369208287b19a2ed67a815d264d1 (diff) | |
download | libsoup-518b79eadcc3eb8d61568185465ceb48d3073c9a.tar.gz libsoup-518b79eadcc3eb8d61568185465ceb48d3073c9a.tar.bz2 libsoup-518b79eadcc3eb8d61568185465ceb48d3073c9a.zip |
Fix dlog format error(32bit)submit/tizen/20181227.001142accepted/tizen/unified/20181227.102121
Change-Id: I44454de8db2c15d580b44cb03994270cf60c12eb
-rw-r--r-- | libsoup/soup-message-io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsoup/soup-message-io.c b/libsoup/soup-message-io.c index 38c0826a..11f72edd 100644 --- a/libsoup/soup-message-io.c +++ b/libsoup/soup-message-io.c @@ -744,7 +744,7 @@ io_read (SoupMessage *msg, gboolean blocking, if (nread > 0) { #if ENABLE(TIZEN_DLOG) uri = soup_uri_to_string(soup_message_get_uri(msg), FALSE); - TIZEN_LOGI("[EVT] soup_io_r_body : %ld bytes", nread); + TIZEN_LOGI("[EVT] soup_io_r_body : %zd bytes", nread); g_free(uri); uri = NULL; #endif |