diff options
| author | Amar Singhal <c_amars@quicinc.com> | 2009-08-10 16:58:08 -0700 |
|---|---|---|
| committer | Amar Singhal <c_amars@quicinc.com> | 2009-08-10 16:58:08 -0700 |
| commit | 1f9896e9e9f76da7fa2c171e9cbb96d931b7c9f2 (patch) | |
| tree | d5a13738eacb0cf5ad2ed1105372d7f54f16fe8d /libc/bionic/logd_write.c | |
| parent | e7b1a31aa3072e14adc5fe6df6510d3e594057a6 (diff) | |
| parent | fde8642fc43bdd224e43e5ee9583a49a758fb03c (diff) | |
| download | bionic-1f9896e9e9f76da7fa2c171e9cbb96d931b7c9f2.zip bionic-1f9896e9e9f76da7fa2c171e9cbb96d931b7c9f2.tar.gz bionic-1f9896e9e9f76da7fa2c171e9cbb96d931b7c9f2.tar.bz2 | |
Merge commit 'quic/korg/donut' into qcom_aosp
Diffstat (limited to 'libc/bionic/logd_write.c')
| -rw-r--r-- | libc/bionic/logd_write.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/bionic/logd_write.c b/libc/bionic/logd_write.c index 7c3608b..211b527 100644 --- a/libc/bionic/logd_write.c +++ b/libc/bionic/logd_write.c @@ -126,10 +126,10 @@ static int __android_log_write(int prio, const char *tag, const char *msg) } -static int __android_log_vprint(int prio, const char *tag, const char *fmt, - va_list ap) +int __libc_android_log_vprint(int prio, const char *tag, const char *fmt, + va_list ap) { - char buf[LOG_BUF_SIZE]; + char buf[LOG_BUF_SIZE]; vsnprintf(buf, LOG_BUF_SIZE, fmt, ap); @@ -139,7 +139,7 @@ static int __android_log_vprint(int prio, const char *tag, const char *fmt, int __libc_android_log_print(int prio, const char *tag, const char *fmt, ...) { va_list ap; - char buf[LOG_BUF_SIZE]; + char buf[LOG_BUF_SIZE]; va_start(ap, fmt); vsnprintf(buf, LOG_BUF_SIZE, fmt, ap); |
