summaryrefslogtreecommitdiff
path: root/test/parse.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2012-01-26 23:10:06 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2012-01-26 23:10:06 +0000
commitefc349e0e597a3f0030b46fee03c21bd670fdac1 (patch)
tree4002da81b79c9cc87173d29c0ec53dd7bc8991d3 /test/parse.c
parent734cf791efe792c42dca1c000c7fae633197312b (diff)
downloadlibcss-efc349e0e597a3f0030b46fee03c21bd670fdac1.tar.gz
libcss-efc349e0e597a3f0030b46fee03c21bd670fdac1.tar.bz2
Fix test build.
svn path=/trunk/libcss/; revision=13409
Diffstat (limited to 'test/parse.c')
-rw-r--r--test/parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parse.c b/test/parse.c
index d52ee5d..887eebc 100644
--- a/test/parse.c
+++ b/test/parse.c
@@ -78,7 +78,7 @@ int main(int argc, char **argv)
css_parser_optparams params;
css_parser *parser;
FILE *fp;
- size_t len, origlen;
+ size_t len;
#define CHUNK_SIZE (4096)
uint8_t buf[CHUNK_SIZE];
css_error error;
@@ -105,7 +105,7 @@ int main(int argc, char **argv)
}
fseek(fp, 0, SEEK_END);
- origlen = len = ftell(fp);
+ len = ftell(fp);
fseek(fp, 0, SEEK_SET);
while (len >= CHUNK_SIZE) {