diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2022-07-07 23:29:20 -0400 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2022-07-08 00:07:13 -0400 |
commit | 15728dbd3e74df69fbc41d16584acf3cdc4b0c00 (patch) | |
tree | 6f60781c6ab5c3ed16895992ef419815eafb4602 | |
parent | 38d7ca08710400a0cfe4400b5699211c063c1b3b (diff) |
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.
-rw-r--r-- | src/extensions/extension_age_restriction.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/extensions/extension_age_restriction.c b/src/extensions/extension_age_restriction.c index 8cc30f57b..7937f61ad 100644 --- 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; |