diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2018-06-29 11:08:19 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2018-06-29 11:08:19 +0300 |
commit | dc9a7df509f7ed318669392afae454496bc49234 (patch) | |
tree | f1e27d3f147392626460a4e72df29fb56e2869aa | |
parent | 9ebe93202065c48d63287157e507283d663b9c83 (diff) |
kmstest: print property ids
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r-- | utils/kmsprint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/kmsprint.cpp b/utils/kmsprint.cpp index 4d355fc..c751ac9 100644 --- a/utils/kmsprint.cpp +++ b/utils/kmsprint.cpp @@ -134,7 +134,7 @@ static string format_fb(Framebuffer& fb) static string format_property(const Property* prop, uint64_t val) { - string ret = sformat("%s = ", prop->name().c_str()); + string ret = sformat("%s (%u) = ", prop->name().c_str(), prop->id()); switch (prop->type()) { case PropertyType::Bitmask: |