From 9493be9c3ab500b29a35c6f8416d577571ace22d 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apropos_db.c b/apropos_db.c index 0d2b0728..8ff9e68b 100644 --- a/apropos_db.c +++ b/apropos_db.c @@ -1,4 +1,4 @@ -/* $Id: apropos_db.c,v 1.24 2011/12/16 12:06:35 kristaps Exp $ */ +/* $Id: apropos_db.c,v 1.25 2011/12/16 12:07:45 kristaps Exp $ */ /* * Copyright (c) 2011 Kristaps Dzonsons * Copyright (c) 2011 Ingo Schwarze @@ -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 v1.2.3