IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1301


Ignore:
Timestamp:
Jul 27, 2004, 1:09:23 PM (22 years ago)
Author:
desonia
Message:

various polishing of code.

Location:
trunk/psLib/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/image/psImageIO.c

    r1241 r1301  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-07-19 22:01:19 $
     9 *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-07-27 23:09:23 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    121121
    122122    if (numCols < 1) {
    123         numCols += nAxes[0];
     123        numCols += nAxes[0] - col;
    124124    }
    125125    if (numRows < 1) {
    126         numRows += nAxes[1];
     126        numRows += nAxes[1] - row;
    127127    }
    128128
  • trunk/psLib/src/sysUtils/psHash.h

    r1202 r1301  
    1010 *  @author George Gusciora, MHPCC
    1111 *   
    12  *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-07-08 22:05:14 $
     12 *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-07-27 23:09:23 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    5959
    6060/// Remove key from table.
    61 void *psHashRemove(psHash *table,      ///< table to lookup key in
    62                    const char *key     ///< key to lookup
    63                   );
     61bool psHashRemove(psHash *table,      ///< table to lookup key in
     62                  const char *key     ///< key to lookup
     63                 );
    6464
    6565/// List all keys in table.
Note: See TracChangeset for help on using the changeset viewer.