From 3412dcec612b473adabdff0e5d6004bfc94c938c Mon Sep 17 00:00:00 2001 From: Indu Bhagat Date: Tue, 27 Jun 2023 11:56:13 -0700 Subject: libsframe: use appropriate data types for args of sframe_encode include/ * sframe-api.h (sframe_encode): Use of uint8_t is more appropriate. libsframe/ * sframe.c (sframe_encode): Likewise. --- include/sframe-api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/sframe-api.h b/include/sframe-api.h index 4661492..9cb2db0 100644 --- a/include/sframe-api.h +++ b/include/sframe-api.h @@ -202,7 +202,7 @@ sframe_fre_get_ra_mangled_p (sframe_decoder_ctx *dctx, /* Create an encoder context with the given SFrame format version VER, FLAGS and ABI information. Sets errp if failure. */ extern sframe_encoder_ctx * -sframe_encode (unsigned char ver, unsigned char flags, int abi, +sframe_encode (uint8_t ver, uint8_t flags, uint8_t abi_arch, int8_t fixed_fp_offset, int8_t fixed_ra_offset, int *errp); /* Free the encoder context. */ -- cgit v1.1