summaryrefslogtreecommitdiff
path: root/src/parse/properties/border_width.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/properties/border_width.c')
-rw-r--r--src/parse/properties/border_width.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse/properties/border_width.c b/src/parse/properties/border_width.c
index de4845a..88abae5 100644
--- a/src/parse/properties/border_width.c
+++ b/src/parse/properties/border_width.c
@@ -27,7 +27,7 @@
* Post condition: \a *ctx is updated with the next token to process
* If the input is invalid, then \a *ctx remains unchanged.
*/
-css_error parse_border_width(css_language *c,
+css_error css__parse_border_width(css_language *c,
const parserutils_vector *vector, int *ctx,
css_style *result)
{
@@ -90,7 +90,7 @@ css_error parse_border_width(css_language *c,
} else {
side_val[side_count] = BORDER_WIDTH_SET;
- error = parse_unit_specifier(c, vector, ctx, UNIT_PX, &side_length[side_count], &side_unit[side_count]);
+ error = css__parse_unit_specifier(c, vector, ctx, UNIT_PX, &side_length[side_count], &side_unit[side_count]);
if (error == CSS_OK) {
if (side_unit[side_count] == UNIT_PCT ||
side_unit[side_count] & UNIT_ANGLE ||