Radish alpha
H
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Radicle
Git
Fix build with gcc
Baptiste Daroussin committed 12 years ago
commit 5ad5dd1b633e61e09f5b707eaf1b26cb29d33b32
parent 7b737a4
1 file changed +1 -1
modified external/libucl/include/ucl.h
@@ -295,7 +295,7 @@ ucl_obj_get_key (ucl_object_t *obj, const char *key)
	}

	keylen = strlen (key);
-
	HASH_FIND(hh, obj->value.ov, key, keylen, ret);
+
	HASH_FIND(hh, obj->value.ov, __DECONST(char *, key), keylen, ret);

	return ret;
}