IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 19, 2004, 9:41:51 AM (22 years ago)
Author:
rhl
Message:

Fixed up code for changes in organisation and APIs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/src/Utils/hash.c

    r267 r446  
    6767 * Con/Destruct psHash tables
    6868 */
    69 psHash *psHashAlloc(int nbucket)        // initial number of buckets
    70 {
     69psHash *psHashAlloc(void)
     70{
     71    int nbucket = 128;                  // XXX initial number of buckets
    7172    psHash *table = psAlloc(sizeof(psHash));
    7273    table->buckets = psAlloc(nbucket*sizeof(HashBucket *));
Note: See TracChangeset for help on using the changeset viewer.