IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 8, 2005, 7:58:58 AM (21 years ago)
Author:
desonia
Message:

changed name of fileUtils to dataIO to better coorespond to the latest
SDRS.

File:
1 edited

Legend:

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

    r3682 r3684  
    99 *  @author Robert DeSonia, MHPCC
    1010 *
    11  *  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-04-07 20:27:41 $
     11 *  @version $Revision: 1.35 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-04-08 17:58:57 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    428428        imgVec = psAlloc(sizeof(psVector));
    429429        imgVec->type = in->type;
    430         imgVec->n = imgVec->nalloc = numCols;
     430        imgVec->n = *(int*)&imgVec->nalloc = numCols;
    431431        if (mask != NULL) {
    432432            maskVec = psAlloc(sizeof(psVector));
    433433            maskVec->type = mask->type;
    434             maskVec->n = maskVec->nalloc = numCols;
     434            maskVec->n = *(int*)&maskVec->nalloc = numCols;
    435435        }
    436436        // recycle output to make a proper sized/type output structure
Note: See TracChangeset for help on using the changeset viewer.