From 3a2dc6cce4e308d8b1002e9a2b4a713102e4d85e Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Wed, 29 Mar 2023 11:24:43 -0700 Subject: [PATCH] Adapt dctool to recent API change Signed-off-by: Dirk Hohndel --- examples/dctool_fwupdate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/dctool_fwupdate.c b/examples/dctool_fwupdate.c index 4395c39..8a95a06 100644 --- a/examples/dctool_fwupdate.c +++ b/examples/dctool_fwupdate.c @@ -94,7 +94,7 @@ fwupdate (dc_context_t *context, dc_descriptor_t *descriptor, dc_transport_t tra rc = hw_ostc_device_fwupdate (device, hexfile); break; case DC_FAMILY_HW_OSTC3: - rc = hw_ostc3_device_fwupdate (device, hexfile); + rc = hw_ostc3_device_fwupdate (device, hexfile, false); break; case DC_FAMILY_DIVESYSTEM_IDIVE: rc = divesystem_idive_device_fwupdate (device, hexfile);