summaryrefslogtreecommitdiff
path: root/services/input/EventHub.cpp
diff options
context:
space:
mode:
author Jeff Brown <jeffbrown@google.com> 2011-10-05 11:14:13 -0700
committer Jeff Brown <jeffbrown@google.com> 2012-01-19 14:08:48 -0800
commit4130554b452a8462a83f97051240f1aec8590650 (patch)
treed947199bac924e8068be8d81cd3b105a9ea6a129 /services/input/EventHub.cpp
parent6534c0e0548332801cffaa0977af165025030297 (diff)
Fix line wrapping.
Change-Id: I41199d1145d2435eee046a7e5006dcdce0986821
Diffstat (limited to 'services/input/EventHub.cpp')
-rw-r--r--services/input/EventHub.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/services/input/EventHub.cpp b/services/input/EventHub.cpp
index 68bbb570a3f9..990892384181 100644
--- a/services/input/EventHub.cpp
+++ b/services/input/EventHub.cpp
@@ -648,8 +648,9 @@ size_t EventHub::getEvents(int timeoutMillis, RawEvent* buffer, size_t bufferSiz
sizeof(struct input_event) * capacity);
if (readSize == 0 || (readSize < 0 && errno == ENODEV)) {
// Device was removed before INotify noticed.
- ALOGW("could not get event, removed? (fd: %d size: %d bufferSize: %d capacity: %d errno: %d)\n",
- device->fd, readSize, bufferSize, capacity, errno);
+ ALOGW("could not get event, removed? (fd: %d size: %d bufferSize: %d "
+ "capacity: %d errno: %d)\n",
+ device->fd, readSize, bufferSize, capacity, errno);
deviceChanged = true;
closeDeviceLocked(device);
} else if (readSize < 0) {