summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2022-07-07 23:29:20 -0400
committerThien-Thi Nguyen <ttn@gnuvola.org>2022-07-08 00:07:13 -0400
commit15728dbd3e74df69fbc41d16584acf3cdc4b0c00 (patch)
tree6f60781c6ab5c3ed16895992ef419815eafb4602 /src
parent38d7ca08710400a0cfe4400b5699211c063c1b3b (diff)
downloadexchange-15728dbd3e74df69fbc41d16584acf3cdc4b0c00.tar.gz
exchange-15728dbd3e74df69fbc41d16584acf3cdc4b0c00.tar.bz2
exchange-15728dbd3e74df69fbc41d16584acf3cdc4b0c00.zip
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 (limited to 'src')
-rw-r--r--src/extensions/extension_age_restriction.c4
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;