]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
include: sframe: fix minor typos in sframe_decode
authorIndu Bhagat <indu.bhagat@oracle.com>
Wed, 5 Nov 2025 07:28:43 +0000 (23:28 -0800)
committerIndu Bhagat <indu.bhagat@oracle.com>
Wed, 5 Nov 2025 07:28:43 +0000 (23:28 -0800)
Change argument names (in declaration) to SF_BUF and SF_SIZE (instead of
the current CF_BUF and CF_SIZE respectively).

include/
        * sframe-api.h (sframe_decode): Fix typos.  Use same name as
used for the definition.

include/sframe-api.h

index 507f806ab4c43f0475a491e59f957b0b5bef81eb..42f140115de51d039fefa9e7ccc654b6c67d9694 100644 (file)
@@ -103,10 +103,10 @@ sframe_calc_fre_type (size_t func_size);
 
 /* The SFrame Decoder.  */
 
-/* Decode the specified SFrame buffer CF_BUF of size CF_SIZE and return the
+/* Decode the specified SFrame buffer SF_BUF of size SF_SIZE and return the
    new SFrame decoder context.  Sets ERRP for the caller if any error.  */
 extern sframe_decoder_ctx *
-sframe_decode (const char *cf_buf, size_t cf_size, int *errp);
+sframe_decode (const char *sf_buf, size_t sf_size, int *errp);
 
 /* Free the decoder context.  */
 extern void