diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-13 08:51:35 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-13 08:51:35 +0800 |
commit | 0b61367927c2b77cce75a43e3db0e2a36d1dfe0b (patch) | |
tree | 038960e0d10943215c30468426230f4760ca0496 /interchange.h | |
parent | 19071e628c45c63a6c12d9dd67c76671770e3889 (diff) |
Declare products as a pointer so it's assignable
Diffstat (limited to 'interchange.h')
-rw-r--r-- | interchange.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interchange.h b/interchange.h index 2775613..d4d1152 100644 --- a/interchange.h +++ b/interchange.h @@ -23,7 +23,7 @@ struct interchange_product { struct interchange_catalog { size_t length; - struct interchange_product products[]; + struct interchange_product *products; }; /*! |