From 535abfc6f0b754610e9f6603955a9d5f49ecbb2d Mon Sep 17 00:00:00 2001 From: schernykh Date: Fri, 30 Sep 2022 15:36:49 +0300 Subject: [PATCH] Fix type issue in irtoc Signed-off-by: schernykh --- irtoc_scripts/object.irt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irtoc_scripts/object.irt b/irtoc_scripts/object.irt index 48ec6cced..f91f898b8 100644 --- a/irtoc_scripts/object.irt +++ b/irtoc_scripts/object.irt @@ -71,7 +71,7 @@ scoped_macro(:prop_get_sorted_index) do |attributes| end scoped_macro(:layout_info_get_sorted_index) do |layout, index| - attributes := get_prop_attr(layout, index) + attributes := anytoi32(get_prop_attr(layout, index)) prop_get_sorted_index(attributes) end -- Gitee