diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2021-08-04 11:24:03 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2021-08-04 11:24:03 +0000 |
commit | 29f70f35a48241eef0a690a00d5211f487972cba (patch) | |
tree | 7153e8f6623aed91a7d98a4961730bd161ac8a1a /src/caches/dcache_init.c | |
parent | ffed76f91e3623f40d1ebffffc0bc728722c84f5 (diff) | |
download | s6-dns-29f70f35a48241eef0a690a00d5211f487972cba.tar.xz |
Adapt to skalibs-2.11
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/caches/dcache_init.c')
-rw-r--r-- | src/caches/dcache_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/caches/dcache_init.c b/src/caches/dcache_init.c index 93a069c..cc6c635 100644 --- a/src/caches/dcache_init.c +++ b/src/caches/dcache_init.c @@ -22,8 +22,8 @@ static int key_cmp (void const *a, void const *b, void *x) static int tain_cmp (void const *a, void const *b, void *x) { - tain_t const *ta = a ; - tain_t const *tb = b ; + tain const *ta = a ; + tain const *tb = b ; (void)x ; return tain_less(ta, tb) ? -1 : tain_less(tb, ta) ; } |