commit 15728dbd3e74df69fbc41d16584acf3cdc4b0c00
parent 38d7ca08710400a0cfe4400b5699211c063c1b3b
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date: Thu, 7 Jul 2022 23:29:20 -0400
rename param
The new name now matches the documentation and the header file.
* src/extensions/extension_age_restriction.c (TALER_age_mask_to_string):
Rename param ‘m’ to ‘mask’; update all references.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/extensions/extension_age_restriction.c b/src/extensions/extension_age_restriction.c
@@ -83,9 +83,9 @@ TALER_parse_age_group_string (
char *
TALER_age_mask_to_string (
- const struct TALER_AgeMask *m)
+ const struct TALER_AgeMask *mask)
{
- uint32_t bits = m->bits;
+ uint32_t bits = mask->bits;
unsigned int n = 0;
char *buf = GNUNET_malloc (32 * 3); // max characters possible
char *pos = buf;