From 0b8200986863266f3d24c01d1817f2a2cda983ea Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Sun, 27 Apr 2025 20:52:46 -0400 Subject: fix cmp_flow_unit() --- compressor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compressor.c b/compressor.c index 39a8931..9bc0257 100644 --- a/compressor.c +++ b/compressor.c @@ -263,7 +263,7 @@ index(const void *key, const void *base, size_t n, size_t size, int (*cmp)(const static int cmp_flow_unit(const void *key, const void *datum) { - return strcmp((char *) key, (char *) datum); + return strcmp((char *) key, *(char **) datum); } static int -- cgit v1.2.3