summaryrefslogtreecommitdiffstats
path: root/core/table.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2020-04-14 20:06:19 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-05-06 13:58:09 -0700
commitebdb3e3c3029d3762207e8dcadfa3a61bf0a9293 (patch)
treed27db501b1f79a0c89a1d5fbf2790171f843399c /core/table.h
parentdb24f16686b7e704e625f499140848681b31cfde (diff)
downloadsubsurface-ebdb3e3c3029d3762207e8dcadfa3a61bf0a9293.tar.gz
media: create sort_picture_table function via macro
This needs a slight change to the macro, because here we sort by value type. Yes, from a C-programming point of view this is horrible, however a decent compiler should just inline everything and not pass around value types. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/table.h')
-rw-r--r--core/table.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/table.h b/core/table.h
index 0f168f4bc..d12a711eb 100644
--- a/core/table.h
+++ b/core/table.h
@@ -72,8 +72,8 @@
#define MAKE_SORT(table_type, item_type, array_name, fun) \
static int sortfn_##table_type(const void *_a, const void *_b) \
{ \
- const item_type a = (const item_type)*(const void **)_a; \
- const item_type b = (const item_type)*(const void **)_b; \
+ const item_type a = *(const item_type *)_a; \
+ const item_type b = *(const item_type *)_b; \
return fun(a, b); \
} \
\