IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 12315


Ignore:
Timestamp:
Mar 8, 2007, 9:55:46 AM (19 years ago)
Author:
Paul Price
Message:

Fixing assetion on hash table size.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/types/psHash.c

    r12310 r12315  
    1212*  @author GLG, MHPCC
    1313*
    14 *  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
    15 *  @date $Date: 2007-03-08 04:07:35 $
     14*  @version $Revision: 1.41 $ $Name: not supported by cvs2svn $
     15*  @date $Date: 2007-03-08 19:55:46 $
    1616*
    1717*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    230230{
    231231    assert(table);
    232     assert(table->n > 0);
     232    assert(table->n >= 0);
    233233    assert(key && strlen(key) > 0);
    234234
Note: See TracChangeset for help on using the changeset viewer.