diff options
author | Indu Bhagat <indu.bhagat@oracle.com> | 2023-04-19 14:12:17 -0700 |
---|---|---|
committer | Indu Bhagat <indu.bhagat@oracle.com> | 2023-04-19 14:37:59 -0700 |
commit | 8bb878b77785016d41447aa253821ff0a869cc56 (patch) | |
tree | 64e4091dde84108090a762536a869e1327bedb1d /libsframe | |
parent | 26be6015b750e7e2b40718b09c6195e8986be461 (diff) | |
download | binutils-8bb878b77785016d41447aa253821ff0a869cc56.zip binutils-8bb878b77785016d41447aa253821ff0a869cc56.tar.gz binutils-8bb878b77785016d41447aa253821ff0a869cc56.tar.bz2 |
sframe: correct some typos
include/
* sframe.h: Correct a typo.
libsframe/
* sframe.c: Likewise.
Diffstat (limited to 'libsframe')
-rw-r--r-- | libsframe/sframe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsframe/sframe.c b/libsframe/sframe.c index 907214a..b2c8eac 100644 --- a/libsframe/sframe.c +++ b/libsframe/sframe.c @@ -970,7 +970,7 @@ sframe_get_funcdesc_with_addr (sframe_decoder_ctx *ctx, if (fdp[mid].sfde_func_start_address < addr) { if (mid == (cnt - 1)) /* Check if it's the last one. */ - return fdp + (cnt - 1) ; + return fdp + (cnt - 1); else if (fdp[mid+1].sfde_func_start_address > addr) return fdp + mid; low = mid + 1; |