summaryrefslogtreecommitdiff
path: root/src/parse/properties/background_position.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/properties/background_position.c')
-rw-r--r--src/parse/properties/background_position.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse/properties/background_position.c b/src/parse/properties/background_position.c
index e74072f..af38882 100644
--- a/src/parse/properties/background_position.c
+++ b/src/parse/properties/background_position.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_background_position(css_language *c,
+css_error css__parse_background_position(css_language *c,
const parserutils_vector *vector, int *ctx,
css_style *result)
{
@@ -108,7 +108,7 @@ css_error parse_background_position(css_language *c,
} else if (token->type == CSS_TOKEN_DIMENSION ||
token->type == CSS_TOKEN_NUMBER ||
token->type == CSS_TOKEN_PERCENTAGE) {
- error = parse_unit_specifier(c, vector, ctx,
+ error = css__parse_unit_specifier(c, vector, ctx,
UNIT_PX, &length[i], &unit[i]);
if (error != CSS_OK) {
*ctx = orig_ctx;