summaryrefslogtreecommitdiff
path: root/src/parse/properties.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-01-18 00:43:58 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-01-18 00:43:58 +0000
commit5bfec06a8d214450419c4a432ad1b418ede97a9d (patch)
tree269237f7456ca7b32b71ee23cdba8d5e4529bd60 /src/parse/properties.c
parente7448355f1a5c61d818f1506a9fbc183024334de (diff)
downloadlibcss-5bfec06a8d214450419c4a432ad1b418ede97a9d.tar.gz
libcss-5bfec06a8d214450419c4a432ad1b418ede97a9d.tar.bz2
Fix pitch-range
svn path=/trunk/libcss/; revision=6127
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 e0f07d9..922ea6c 100644
--- a/src/parse/properties.c
+++ b/src/parse/properties.c
@@ -4381,7 +4381,7 @@ css_error parse_pitch_range(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)