From 9a425a8f0ff77b19e33c8aee2966eab82caf33af Mon Sep 17 00:00:00 2001 From: dukesook Date: Sat, 4 Nov 2023 03:35:34 +0000 Subject: [PATCH] fixed compilation error --- libheif/heif_properties.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libheif/heif_properties.cc b/libheif/heif_properties.cc index 8721e7ca0d4..90ab9284edb 100644 --- a/libheif/heif_properties.cc +++ b/libheif/heif_properties.cc @@ -444,7 +444,7 @@ struct heif_error heif_property_get_tai_timestamp(const struct heif_context* con auto ipco = file->get_ipco_box(); auto impa = file->get_ipma_box(); auto prop = ipco->get_property_for_item_ID(itemId, impa, fourcc("itai")); - auto itai = std::dynamic_pointer_cast(prop); + auto itai = std::dynamic_pointer_cast(prop); if (!itai) { return {heif_error_Usage_error, heif_suberror_Invalid_property, "Timestamp property not found"}; }