diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-12 18:53:42 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-12 18:53:42 +0800 |
commit | 7f0b0306514fc7187440998e183b9d6dfbaa2d01 (patch) | |
tree | 40e0e14c62960457952962fc69cd2656c0b6bf15 /interchange/ord.h | |
parent | ff203b595fc28eb00b23535c35afcdcbdc2a846f (diff) |
Items is now array of (not pointer of) items
Diffstat (limited to 'interchange/ord.h')
-rw-r--r-- | interchange/ord.h | 2 |
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 { |