rutabaga: Use method instead of property

In an earlier refactor, mistakenly called .properties instead of
properties()

BUG=b:244622199
TEST=downstream

Change-Id: Ia34e6167ad04e9b42580193b9fcd6b4f8acaf1fd
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3939622
Commit-Queue: Idan Raiter <idanr@google.com>
Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
This commit is contained in:
Idan Raiter 2022-10-07 16:32:31 -07:00 committed by crosvm LUCI
parent 3e19680831
commit 91741705a5

View file

@ -98,7 +98,7 @@ trait DeviceExt {
impl DeviceExt for Device {
fn get_id(&self) -> DeviceId {
let properties = self.physical_device().properties;
let properties = self.physical_device().properties();
DeviceId {
device_uuid: properties.device_uuid.expect("Vulkan should support uuid"),
driver_uuid: properties.driver_uuid.expect("Vulkan should support uuid"),