summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2022-07-07 23:54:32 -0400
committerThien-Thi Nguyen <ttn@gnuvola.org>2022-07-08 00:08:05 -0400
commit8c2ee80ae8e0ee078f7c5a3b98a521e7344a975c (patch)
tree7469c384d4121aa1b97f23d08285d88a2a99498d /src/util
parent15728dbd3e74df69fbc41d16584acf3cdc4b0c00 (diff)
downloadexchange-8c2ee80ae8e0ee078f7c5a3b98a521e7344a975c.tar.gz
exchange-8c2ee80ae8e0ee078f7c5a3b98a521e7344a975c.tar.bz2
exchange-8c2ee80ae8e0ee078f7c5a3b98a521e7344a975c.zip
rename param
The new name now matches the documentation and the header file. * src/util/tv_age_restriction.c (age_mask_to_string): Rename param from ‘m’ to ‘mask’; update all references.
Diffstat (limited to 'src/util')
-rw-r--r--src/util/tv_age_restriction.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/tv_age_restriction.c b/src/util/tv_age_restriction.c
index 2958c14a8..9fc2b4823 100644
--- a/src/util/tv_age_restriction.c
+++ b/src/util/tv_age_restriction.c
@@ -37,9 +37,9 @@ get_age_group (
*/
char *
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;