File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -271,7 +271,7 @@ void wolfBoot_update_trigger(void);
271271void wolfBoot_success (void );
272272uint32_t wolfBoot_image_size (uint8_t * image );
273273uint32_t wolfBoot_get_blob_version (uint8_t * blob );
274- uint32_t wolfBoot_get_blob_type (uint8_t * blob );
274+ uint16_t wolfBoot_get_blob_type (uint8_t * blob );
275275uint32_t wolfBoot_get_blob_diffbase_version (uint8_t * blob );
276276
277277/* Get partition ID from manifest header */
Original file line number Diff line number Diff line change @@ -1075,9 +1075,9 @@ uint32_t wolfBoot_get_blob_version(uint8_t *blob)
10751075 *
10761076 * @return The type of the blob, or 0 if the blob is invalid.
10771077 */
1078- uint32_t wolfBoot_get_blob_type (uint8_t * blob )
1078+ uint16_t wolfBoot_get_blob_type (uint8_t * blob )
10791079{
1080- uint32_t * volatile type_field = NULL ;
1080+ uint16_t * volatile type_field = NULL ;
10811081 uint32_t * magic = NULL ;
10821082 uint8_t * img_bin = blob ;
10831083#if defined(EXT_ENCRYPTED ) && defined(MMU )
You can’t perform that action at this time.
0 commit comments