diff options
-rw-r--r-- | client.c | 6 | ||||
-rw-r--r-- | icclient/client.h | 6 |
2 files changed, 6 insertions, 6 deletions
@@ -75,10 +75,10 @@ static int itemcmp(const void *item1, const void *item2) , (*(icclient_ord_item * const *)item2)->product->sku); } -void icclient_order(icclient_ord_order **orderptr, const char *sku - , icclient_catalog *catalog) +void icclient_order(const char *sku, const icclient_catalog *catalog, + icclient_ord_order **orderptr) { - icclient_product **products = catalog->products; + icclient_product **products = ((icclient_catalog *)catalog)->products; qsort(products, catalog->length, sizeof(icclient_product *), prodcmp); icclient_product *key_product = malloc(sizeof(icclient_product)); icclient_product_init(key_product); diff --git a/icclient/client.h b/icclient/client.h index 02804bb..f81f567 100644 --- a/icclient/client.h +++ b/icclient/client.h @@ -50,12 +50,12 @@ extern "C" { /*! * \brief For putting an item to a cart. - * \param orderptr A pointer to pointer to the order. * \param sku The SKU of the item to order. * \param catalog A pointer to the catalog from which the item is. + * \param orderptr A pointer to pointer to the order. */ - void icclient_order(struct icclient_ord_order **orderptr, const char *sku, - struct icclient_catalog *catalog); + void icclient_order(const char *sku, const struct icclient_catalog *catalog, + struct icclient_ord_order **orderptr); void icclient_newaccount(size_t (*handler)(void *contents, size_t size, size_t nmemb, void *userdata), struct icclient_user *user, |