summaryrefslogtreecommitdiff
path: root/utils/kmsprint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/kmsprint.cpp')
-rw-r--r--utils/kmsprint.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/kmsprint.cpp b/utils/kmsprint.cpp
index 807aa62..9d3d7cc 100644
--- a/utils/kmsprint.cpp
+++ b/utils/kmsprint.cpp
@@ -372,7 +372,7 @@ static void print_as_list(Card& card)
for (Crtc* crtc : card.get_crtcs()) {
obs.push_back(crtc);
- if (crtc->buffer_id() && !card.has_has_universal_planes()) {
+ if (crtc->buffer_id() && !card.has_universal_planes()) {
Framebuffer* fb = new Framebuffer(card, crtc->buffer_id());
fbs.push_back(fb);
}
@@ -423,7 +423,7 @@ static void print_as_tree(Card& card)
if (s_opts.print_props)
e3.lines = format_props(crtc);
- if (crtc->buffer_id() && !card.has_has_universal_planes()) {
+ if (crtc->buffer_id() && !card.has_universal_planes()) {
Framebuffer fb(card, crtc->buffer_id());
Entry& e5 = add_entry(e3.children);