summaryrefslogtreecommitdiff
path: root/getgbook.c
diff options
context:
space:
mode:
authorNick White <git@njw.me.uk>2012-04-20 11:50:50 +0100
committerNick White <git@njw.me.uk>2012-04-20 11:50:50 +0100
commit7e55f7ae9f1e3d86c970a7bf9b48d4d567182caf (patch)
treeb9b1b6eeffdf0fee7e8d9149d448d083d52836ee /getgbook.c
parent7739ec5aaee54b44ee9e570c3f4fbc11e0fd3014 (diff)
Fix incorrect function usage
Diffstat (limited to 'getgbook.c')
-rw-r--r--getgbook.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/getgbook.c b/getgbook.c
index 660a1f6..77893f6 100644
--- a/getgbook.c
+++ b/getgbook.c
@@ -192,7 +192,7 @@ int main(int argc, char *argv[])
bookdir = argv[argc-1];
pages = malloc(sizeof(*pages) * MAXPAGES);
- if(getpagelist(bookid, pages)) {
+ if(getpagelist()) {
fprintf(stderr, "Could not find any pages for %s\n", bookid);
return 1;
}