X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=adt%2Fhashset.c;h=d7fb989b5d91a333783023fdde188add7fe0e26d;hb=2058211f61e90b3acfcce898516274e84c314c8b;hp=70dce5bdc946b03b95eb2174df2344736a6ede27;hpb=c5930eba0b375e52de3b477dcf3540636701774b;p=cparser diff --git a/adt/hashset.c b/adt/hashset.c index 70dce5b..d7fb989 100644 --- a/adt/hashset.c +++ b/adt/hashset.c @@ -1,3 +1,23 @@ +/* + * This file is part of cparser. + * Copyright (C) 2007-2008 Matthias Braun + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA + * 02111-1307, USA. + */ + /** * @file * @date 17.03.2007 @@ -536,7 +556,7 @@ void hashset_init_size(HashSet *this, size_t expected_elements) abort(); } - needed_size = expected_elements * (1.0 / HT_OCCUPANCY_FLT); + needed_size = (size_t) (expected_elements * (1.0 / HT_OCCUPANCY_FLT)); po2size = ceil_po2(needed_size); init_size(this, po2size); }