summaryrefslogtreecommitdiff
path: root/src/parse/properties.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-01-18 01:10:38 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-01-18 01:10:38 +0000
commit8010052bbb720211a59670047a44549db2c14d22 (patch)
treebda9a4ec97d611002d30dc151ba68a947bf89bd0 /src/parse/properties.c
parentbeba910e64662d814972e632be78351d652170fe (diff)
downloadlibcss-8010052bbb720211a59670047a44549db2c14d22.tar.gz
libcss-8010052bbb720211a59670047a44549db2c14d22.tar.bz2
Fix speech-rate
svn path=/trunk/libcss/; revision=6133
Diffstat (limited to 'src/parse/properties.c')
-rw-r--r--src/parse/properties.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/properties.c b/src/parse/properties.c
index c4f8499..94d200e 100644
--- a/src/parse/properties.c
+++ b/src/parse/properties.c
@@ -5117,7 +5117,7 @@ css_error parse_speech_rate(css_language *c,
} else if (token->type == CSS_TOKEN_NUMBER) {
size_t consumed = 0;
css_string tmp = { token->ilower->len,
- (uint8_t *) token->ilower };
+ (uint8_t *) token->ilower->data };
num = number_from_css_string(&tmp, false, &consumed);
/* Invalid if there are trailing characters */
if (consumed != token->ilower->len)