summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiarhei Vishniakou <svv@google.com>2022-07-29 20:50:19 +0000
committerSiarhei Vishniakou <svv@google.com>2022-08-03 14:58:52 +0000
commit5c3b770de0d6517550e8e5c889a9cd0579dd8d62 (patch)
treed8a10033d875aff8ef2f474037001d836b563372
parent301ae9d2a65cdaed86e562f0f392d469f5207c72 (diff)
downloadlibpalmrejection-5c3b770de0d6517550e8e5c889a9cd0579dd8d62.tar.gz
Add a comma
To fix formatting, add a comma. Bug: 240168494 Test: None Change-Id: I47dcb00a2c5c7c6243748b4eb0d666a2dfc912d9
-rw-r--r--ui/events/ozone/evdev/touch_evdev_types.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/events/ozone/evdev/touch_evdev_types.cc b/ui/events/ozone/evdev/touch_evdev_types.cc
index 83ee59a..b6a9c3c 100644
--- a/ui/events/ozone/evdev/touch_evdev_types.cc
+++ b/ui/events/ozone/evdev/touch_evdev_types.cc
@@ -18,7 +18,8 @@ std::ostream& operator<<(std::ostream& out, const InProgressTouchEvdev& touch) {
<< ", tracking_id=" << touch.tracking_id << ", slot=" << touch.slot
<< ", pressure=" << touch.pressure << ", major=" << touch.major
<< ", minor=" << touch.minor << ", tool_type=" << touch.tool_type
- << ", altered=" << touch.altered << "was_touching=" << touch.was_touching
+ << ", altered=" << touch.altered
+ << ", was_touching=" << touch.was_touching
<< ", touching=" << touch.touching << ")";
return out;
}