summaryrefslogtreecommitdiff
path: root/src/libcamera/geometry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcamera/geometry.cpp')
-rw-r--r--src/libcamera/geometry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcamera/geometry.cpp b/src/libcamera/geometry.cpp
index 3b366af2..e50b46c5 100644
--- a/src/libcamera/geometry.cpp
+++ b/src/libcamera/geometry.cpp
@@ -841,7 +841,7 @@ bool operator==(const Rectangle &lhs, const Rectangle &rhs)
*/
std::ostream &operator<<(std::ostream &out, const Rectangle &r)
{
- out << "(" << r.x << "x" << r.y << ")/" << r.width << "x" << r.height;
+ out << "(" << r.x << ", " << r.y << ")/" << r.width << "x" << r.height;
return out;
}