summaryrefslogtreecommitdiff
path: root/ord.c
diff options
context:
space:
mode:
Diffstat (limited to 'ord.c')
-rw-r--r--ord.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ord.c b/ord.c
index a37cc84..42a5aea 100644
--- a/ord.c
+++ b/ord.c
@@ -41,7 +41,7 @@ void icclient_ord_order(const char *sku, const icclient_catalog *catalog,
icclient_product *product = *(icclient_product **)bsearch(&key_product
, products, catalog->length, sizeof(icclient_product *)
, prodcmp);
- icclient_product_free(key_product);
+ icclient_free_product(key_product);
struct icclient_ord_order *order = *orderptr;
icclient_ord_item *item = NULL;
@@ -107,5 +107,5 @@ void icclient_ord_checkout(struct icclient_ord_order *order,
void icclient_ord_free(struct icclient_ord_order *order)
{
for (size_t i = 0; i < order->nitems; i++)
- icclient_product_free(order->items[i]->product);
+ icclient_free_product(order->items[i]->product);
}