diff options
author | Indu Bhagat <indu.bhagat@oracle.com> | 2023-06-06 10:50:07 -0700 |
---|---|---|
committer | Indu Bhagat <indu.bhagat@oracle.com> | 2023-06-06 10:50:07 -0700 |
commit | f4af42724b8c968c355796b561434250aa605458 (patch) | |
tree | c9ba4cc849c716a0c0e08a978f4ea7043a9c15d2 /include | |
parent | d3f340763bab7c74838ebb481fd7ff93acd9f00c (diff) | |
download | gdb-f4af42724b8c968c355796b561434250aa605458.zip gdb-f4af42724b8c968c355796b561434250aa605458.tar.gz gdb-f4af42724b8c968c355796b561434250aa605458.tar.bz2 |
libsframe: fix cosmetic issues and typos
include/
* sframe-api.h (sframe_decoder_get_num_fidx): Use extern.
libsframe/
* sframe-dump.c (dump_sframe_func_with_fres): Fix line length.
* sframe.c (sframe_frame_row_entry_copy): Likewise.
(sframe_decode_fre_start_address): Use the intended type uint32_t.
Diffstat (limited to 'include')
-rw-r--r-- | include/sframe-api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sframe-api.h b/include/sframe-api.h index 3245bc8..df1f5cc 100644 --- a/include/sframe-api.h +++ b/include/sframe-api.h @@ -122,7 +122,7 @@ sframe_decoder_get_abi_arch (sframe_decoder_ctx *dctx); /* Return the number of function descriptor entries in the SFrame decoder DCTX. */ -unsigned int +extern unsigned int sframe_decoder_get_num_fidx (sframe_decoder_ctx *dctx); /* Get the fixed FP offset from the decoder context DCTX. */ |