summaryrefslogtreecommitdiffstats
path: root/liblog
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-11-25 10:25:42 -0800
committerElliott Hughes <enh@google.com>2014-11-25 10:25:42 -0800
commit2a5fecb3cd0b44432836619d77837b1aca299e89 (patch)
treedbac8638779fa874928d99900d5076beef5e9860 /liblog
parent077ff30954275e635c5faa8b75afcd0a44a78dcc (diff)
downloadsystem_core-2a5fecb3cd0b44432836619d77837b1aca299e89.zip
system_core-2a5fecb3cd0b44432836619d77837b1aca299e89.tar.gz
system_core-2a5fecb3cd0b44432836619d77837b1aca299e89.tar.bz2
Only Win32 doesn't have writev.
Change-Id: I9b5328cea3c88a75135dcb0711cbb5471e8fa388
Diffstat (limited to 'liblog')
-rw-r--r--liblog/fake_log_device.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/liblog/fake_log_device.c b/liblog/fake_log_device.c
index b8d87bb..117e154 100644
--- a/liblog/fake_log_device.c
+++ b/liblog/fake_log_device.c
@@ -320,9 +320,9 @@ static const char* getPriorityString(int priority)
return priorityStrings[idx];
}
-#ifndef HAVE_WRITEV
+#if defined(_WIN32)
/*
- * Some platforms like WIN32 do not have writev().
+ * WIN32 does not have writev().
* Make up something to replace it.
*/
static ssize_t fake_writev(int fd, const struct iovec *iov, int iovcnt) {