diff options
author | Elliott Hughes <enh@google.com> | 2013-05-14 11:13:39 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-05-14 11:13:39 -0700 |
commit | ff5fb5cc4b5d3d920b35ef4f64c1cf7a29c6595c (patch) | |
tree | 11bb8122dc1c967cc31cce35b424cda40f14ccb7 /libc/netbsd | |
parent | d1ad4f6dab06189d4d3dcfa19ae4bc301481eb3f (diff) | |
parent | 509fc8069757aa6091e044f659f76da0bf59723c (diff) | |
download | bionic-ff5fb5cc4b5d3d920b35ef4f64c1cf7a29c6595c.zip bionic-ff5fb5cc4b5d3d920b35ef4f64c1cf7a29c6595c.tar.gz bionic-ff5fb5cc4b5d3d920b35ef4f64c1cf7a29c6595c.tar.bz2 |
am 509fc806: am d8a9cccb: Merge "Fix all printf warnings in res_send.c."
* commit '509fc8069757aa6091e044f659f76da0bf59723c':
Fix all printf warnings in res_send.c.
Diffstat (limited to 'libc/netbsd')
-rw-r--r-- | libc/netbsd/resolv/res_send.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/netbsd/resolv/res_send.c b/libc/netbsd/resolv/res_send.c index d407ac8..0bb5b6b 100644 --- a/libc/netbsd/resolv/res_send.c +++ b/libc/netbsd/resolv/res_send.c @@ -581,8 +581,8 @@ res_nsend(res_state statp, if (n == 0) goto next_ns; if (DBG) { - __libc_format_log(ANDROID_LOG_DEBUG, "libc", - "time=%d, %d\n",time(NULL), time(NULL)%2); + __libc_format_log(ANDROID_LOG_DEBUG, "libc", "time=%ld\n", + time(NULL)); } if (v_circuit) goto same_ns; @@ -961,7 +961,7 @@ done: fcntl(sock, F_SETFL, origflags); if (DBG) { __libc_format_log(ANDROID_LOG_DEBUG, "libc", - " %d connect_with_timeout returning %s\n", sock, res); + " %d connect_with_timeout returning %d\n", sock, res); } return res; } @@ -1025,7 +1025,7 @@ retry: } if (DBG) { __libc_format_log(ANDROID_LOG_DEBUG, "libc", - " %d retrying_select returning %d for %d\n",sock, n); + " %d retrying_select returning %d\n",sock, n); } return n; |