diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-04-27 20:52:46 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-04-27 20:52:46 -0400 |
| commit | 0b8200986863266f3d24c01d1817f2a2cda983ea (patch) | |
| tree | b1bccf3eccdc3c62dbc9a00013d0aabb060982fc | |
| parent | 15eb442f68d2fca9c183a9074d0839962c2280fa (diff) | |
| download | volute-0b8200986863266f3d24c01d1817f2a2cda983ea.zip | |
fix cmp_flow_unit()
| -rw-r--r-- | compressor.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |