From 989d6a3f96b818e5eacc5a2ccb1cc82e6dd8354c Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Sat, 11 Apr 2020 17:41:56 +0200 Subject: media: use table instead of linked list for media For consistency with equipment, use our table macros for pictures. Generally tables (arrays) are preferred over linked lists, because they allow random access. This is mostly copy & paste of the equipment code. Sadly, our table macros are quite messy and need some revamping. Therefore, the resulting code is likewise somewhat messy. Signed-off-by: Berthold Stoeger --- core/equipment.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'core/equipment.c') diff --git a/core/equipment.c b/core/equipment.c index 16d6185c1..05e71cee5 100644 --- a/core/equipment.c +++ b/core/equipment.c @@ -132,14 +132,14 @@ weightsystem_t clone_weightsystem(weightsystem_t ws) } /* Add a clone of a weightsystem to the end of a weightsystem table. - * Cloned in means that the description-string is copied. */ + * Cloned means that the description-string is copied. */ void add_cloned_weightsystem(struct weightsystem_table *t, weightsystem_t ws) { add_to_weightsystem_table(t, t->nr, clone_weightsystem(ws)); } /* Add a clone of a weightsystem to the end of a weightsystem table. - * Cloned in means that the description-string is copied. */ + * Cloned means that the description-string is copied. */ void add_cloned_weightsystem_at(struct weightsystem_table *t, weightsystem_t ws) { add_to_weightsystem_table(t, t->nr, clone_weightsystem(ws)); @@ -165,7 +165,7 @@ void add_cylinder(struct cylinder_table *t, int idx, cylinder_t cyl) } /* Add a clone of a cylinder to the end of a cylinder table. - * Cloned in means that the description-string is copied. */ + * Cloned means that the description-string is copied. */ void add_cloned_cylinder(struct cylinder_table *t, cylinder_t cyl) { add_cylinder(t, t->nr, clone_cylinder(cyl)); -- cgit v1.2.3-70-g09d2