summaryrefslogtreecommitdiff
path: root/client.c
diff options
context:
space:
mode:
Diffstat (limited to 'client.c')
-rw-r--r--client.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/client.c b/client.c
index 7eab0c9..f24f968 100644
--- a/client.c
+++ b/client.c
@@ -58,8 +58,9 @@ void icclient_allproducts(size_t (*handler)(void *, size_t, size_t, void *)
request(handler, (void *)catalogptr, NULL, "%s", "All-Products");
}
-void icclient_flypage(size_t (*handler)(void *, size_t, size_t, void *),
- icclient_product **productptr, const char *sku)
+void icclient_flypage(const char *sku,
+ size_t (*handler)(void *, size_t, size_t, void *),
+ icclient_product **productptr)
{
request(handler, (void *)productptr, NULL, "%s", sku);
}