summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-12 18:53:42 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-12 18:53:42 +0800
commit7f0b0306514fc7187440998e183b9d6dfbaa2d01 (patch)
tree40e0e14c62960457952962fc69cd2656c0b6bf15
parentff203b595fc28eb00b23535c35afcdcbdc2a846f (diff)
Items is now array of (not pointer of) items
-rw-r--r--interchange/ord.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/interchange/ord.h b/interchange/ord.h
index 533c5a9..ed7933d 100644
--- a/interchange/ord.h
+++ b/interchange/ord.h
@@ -14,7 +14,7 @@ struct interchange_ord_order {
double total_cost;
char *profile;
size_t nitems;
- struct interchange_ord_item *items[];
+ struct interchange_ord_item *items;
};
struct interchange_ord_transaction {