From 33e226400188ba64e1dd495b0e600a8a42ca2c68 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Fri, 16 Dec 2011 12:07:45 +0000 Subject: Make sure that "any" is UINT64_MAX, not just INT_MAX, else "any" won't cover all types. Found after some database trawling. --- apropos_db.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apropos_db.c') diff --git a/apropos_db.c b/apropos_db.c index 7c703323..c954aa4e 100644 --- a/apropos_db.c +++ b/apropos_db.c @@ -117,7 +117,7 @@ static const struct type types[] = { { TYPE_Va, "Va" }, { TYPE_Va, "Vt" }, { TYPE_Xr, "Xr" }, - { INT_MAX, "any" }, + { UINT64_MAX, "any" }, { 0, NULL } }; -- cgit