summaryrefslogtreecommitdiffstats
path: root/src/scalepoint.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/scalepoint.c')
-rw-r--r--src/scalepoint.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/scalepoint.c b/src/scalepoint.c
index 55c2315..349b2b3 100644
--- a/src/scalepoint.c
+++ b/src/scalepoint.c
@@ -37,13 +37,13 @@ lilv_scale_point_free(LilvScalePoint* point)
}
LILV_API const LilvNode*
-lilv_scale_point_get_value(const LilvScalePoint* p)
+lilv_scale_point_get_value(const LilvScalePoint* point)
{
- return p->value;
+ return point->value;
}
LILV_API const LilvNode*
-lilv_scale_point_get_label(const LilvScalePoint* p)
+lilv_scale_point_get_label(const LilvScalePoint* point)
{
- return p->label;
+ return point->label;
}