View | Details | Raw Unified | Return to bug 142785
Collapse All | Expand All

(-)util.c (-1 / +1 lines)
Lines 320-326 Link Here
320
{
320
{
321
	int pos;
321
	int pos;
322
	
322
	
323
	if( (float)(h->count+1)/h->size > 0.75f )
323
	if( (float)(h->count+1) > 0.75f * h->size )
324
	{
324
	{
325
		if( !hash_realloc( h, (h->size+1) * 2 -1 ) )
325
		if( !hash_realloc( h, (h->size+1) * 2 -1 ) )
326
		{
326
		{

Return to bug 142785