From 38df70b18e8428f919ae0bbec5bfe553b9bb49d0 Mon Sep 17 00:00:00 2001 From: fvanroie <15969459+fvanroie@users.noreply.github.com> Date: Wed, 28 Apr 2021 04:28:38 +0200 Subject: [PATCH] Fix conversion warning --- src/hasp/hasp_attribute.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hasp/hasp_attribute.cpp b/src/hasp/hasp_attribute.cpp index e4a42475..333ede73 100644 --- a/src/hasp/hasp_attribute.cpp +++ b/src/hasp/hasp_attribute.cpp @@ -1825,7 +1825,7 @@ void attr_out_str(lv_obj_t* obj, const char* attribute, const char* data) object_dispatch_state(pageid, objid, payload); } else { - LOG_ERROR(TAG_ATTR, F(D_MQTT_PAYLOAD_TOO_LONG), size); + LOG_ERROR(TAG_ATTR, F(D_MQTT_PAYLOAD_TOO_LONG), (uint32_t)size); } } }