Fix all printf warnings in res_send.c.

Change-Id: I4bf959140b5a5475897bd80704e64e3c4645fc3f
This commit is contained in:
Kito Cheng 2013-05-11 17:48:48 +08:00 committed by Elliott Hughes
parent 98f7659d7e
commit bb0b09cad6

View File

@ -568,8 +568,8 @@ res_nsend(res_state statp,
if (n == 0) if (n == 0)
goto next_ns; goto next_ns;
if (DBG) { if (DBG) {
__libc_format_log(ANDROID_LOG_DEBUG, "libc", __libc_format_log(ANDROID_LOG_DEBUG, "libc", "time=%ld\n",
"time=%d, %d\n",time(NULL), time(NULL)%2); time(NULL));
} }
if (v_circuit) if (v_circuit)
goto same_ns; goto same_ns;
@ -948,7 +948,7 @@ done:
fcntl(sock, F_SETFL, origflags); fcntl(sock, F_SETFL, origflags);
if (DBG) { if (DBG) {
__libc_format_log(ANDROID_LOG_DEBUG, "libc", __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; return res;
} }
@ -1012,7 +1012,7 @@ retry:
} }
if (DBG) { if (DBG) {
__libc_format_log(ANDROID_LOG_DEBUG, "libc", __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; return n;