summaryrefslogtreecommitdiffstats
path: root/libcutils/buffer.c
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-12-20 16:07:45 +0000
committerSteve Block <steveblock@google.com>2012-01-03 22:32:30 +0000
commit8d66c49258ac4f59bd67c23c9c914cca81f85b01 (patch)
tree24447dff0da16f6ef9af1512f1f4ff936e3014af /libcutils/buffer.c
parent0fdccb561d37022d4ccc82982de81c2b32617803 (diff)
downloadsystem_core-8d66c49258ac4f59bd67c23c9c914cca81f85b01.zip
system_core-8d66c49258ac4f59bd67c23c9c914cca81f85b01.tar.gz
system_core-8d66c49258ac4f59bd67c23c9c914cca81f85b01.tar.bz2
Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE
Bug: 5449033 Change-Id: I9244d927f14c750cd359ebffb1fc1c355a755d5a
Diffstat (limited to 'libcutils/buffer.c')
-rw-r--r--libcutils/buffer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcutils/buffer.c b/libcutils/buffer.c
index f34b8f8..af99bd7 100644
--- a/libcutils/buffer.c
+++ b/libcutils/buffer.c
@@ -104,9 +104,9 @@ ssize_t bufferWrite(Buffer* buffer, int fd) {
if (bytesWritten >= 0) {
buffer->remaining -= bytesWritten;
- LOGD("Buffer bytes written: %d", (int) bytesWritten);
- LOGD("Buffer size: %d", (int) buffer->size);
- LOGD("Buffer remaining: %d", (int) buffer->remaining);
+ ALOGD("Buffer bytes written: %d", (int) bytesWritten);
+ ALOGD("Buffer size: %d", (int) buffer->size);
+ ALOGD("Buffer remaining: %d", (int) buffer->remaining);
return buffer->remaining;
}