From 1783f215d2e0e00b3b1c6db2a6a9df2ed3d699e3 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Wed, 7 Nov 2018 20:52:37 -0800 Subject: gethash_l: C99 fix for Solaris. * hash.c (gethash_l): C99 inline instantiation updated to match new type signature. --- hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hash.c b/hash.c index c6df9581..061706a0 100644 --- a/hash.c +++ b/hash.c @@ -104,7 +104,7 @@ static int hash_str_limit = INT_MAX, hash_rec_limit = 32; /* C99 inline instantiations. */ #if __STDC_VERSION__ >= 199901L -loc gethash_l(val hash, val key, loc new_p); +loc gethash_l(val self, val hash, val key, loc new_p); #endif static u32_t randbox[] = { -- cgit v1.2.3