libsframe: bfd: use uint32_t for return type of sframe_calc_fre_type

Use uint32_t type alias consistently for all APIs in libsframe.

bfd/
	* elfxx-x86.c (_bfd_x86_elf_create_sframe_plt): Adjust for the
	changed return type.
libsframe/
	* sframe.c (sframe_calc_fre_type): Use uint32_t for return type.
include/
	* sframe-api.h (sframe_calc_fre_type): Likewise.
This commit is contained in:
Indu Bhagat
2023-06-27 11:55:38 -07:00
parent 100d405dae
commit 49e4485cba
3 changed files with 3 additions and 3 deletions

View File

@ -98,7 +98,7 @@ sframe_fde_create_func_info (uint32_t fre_type, uint32_t fde_type);
/* Gather the FRE type given the function size. */
extern unsigned int
extern uint32_t
sframe_calc_fre_type (size_t func_size);
/* The SFrame Decoder. */