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.
This commit is contained in:
Thien-Thi Nguyen 2022-07-07 23:29:20 -04:00
parent 38d7ca0871
commit 15728dbd3e
No known key found for this signature in database
GPG Key ID: 670322244C807502

View File

@ -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;