sframe: correct some typos
authorIndu Bhagat <indu.bhagat@oracle.com>
Wed, 19 Apr 2023 21:12:17 +0000 (14:12 -0700)
committerIndu Bhagat <indu.bhagat@oracle.com>
Wed, 19 Apr 2023 21:37:59 +0000 (14:37 -0700)
include/
* sframe.h: Correct a typo.

libsframe/
* sframe.c: Likewise.

include/sframe.h
libsframe/sframe.c

index 58907d734139dd18db602d8a7348ba671c89b98a..c3dbb3a4097181794bbb43ed293f7ea74f5af1d6 100644 (file)
@@ -146,9 +146,9 @@ typedef struct sframe_header
      not fixed, it is set to SFRAME_CFA_FIXED_RA_INVALID, and individual
      FREs provide the applicable stack frame offset, if any.  */
   int8_t sfh_cfa_fixed_ra_offset;
-  /* Number of bytes making up the auxilliary header, if any.
+  /* Number of bytes making up the auxiliary header, if any.
      Some ABI/arch, in the future, may use this space for extending the
-     information in SFrame header.  Auxilliary header is contained in
+     information in SFrame header.  Auxiliary header is contained in
      bytes sequentially following the sframe_header.  */
   uint8_t sfh_auxhdr_len;
   /* Number of SFrame FDEs in this SFrame section.  */
index 907214a8a89cd7edd1532390021582e05e536f19..b2c8eacae1460115c781d2720ed8ea108f8d5236 100644 (file)
@@ -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;