summaryrefslogtreecommitdiff
path: root/test/v4l2_subdevice
diff options
context:
space:
mode:
Diffstat (limited to 'test/v4l2_subdevice')
-rw-r--r--test/v4l2_subdevice/list_formats.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/v4l2_subdevice/list_formats.cpp b/test/v4l2_subdevice/list_formats.cpp
index 47ae3a1c..09dec9ab 100644
--- a/test/v4l2_subdevice/list_formats.cpp
+++ b/test/v4l2_subdevice/list_formats.cpp
@@ -37,10 +37,10 @@ void ListFormatsTest::printFormats(unsigned int pad,
for (SizeRange &size : sizes) {
cout << " mbus code: 0x" << setfill('0') << setw(4)
<< hex << code << endl;
- cout << " min width: " << dec << size.minWidth << endl;
- cout << " min height: " << dec << size.minHeight << endl;
- cout << " max width: " << dec << size.maxWidth << endl;
- cout << " max height: " << dec << size.maxHeight << endl;
+ cout << " min width: " << dec << size.min.width << endl;
+ cout << " min height: " << dec << size.min.height << endl;
+ cout << " max width: " << dec << size.max.width << endl;
+ cout << " max height: " << dec << size.max.height << endl;
}
}