IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 7121


Ignore:
Timestamp:
May 15, 2006, 3:21:14 PM (20 years ago)
Author:
Paul Price
Message:

Fixing errors in the macro that prevented compilation. Builds now.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/imageops/psImagePixelExtract.c

    r7120 r7121  
    88 *  @author Robert DeSonia, MHPCC
    99 *
    10  *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2006-05-16 01:20:09 $
     10 *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2006-05-16 01:21:14 $
    1212 *
    1313 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    111111#define VECTOR_STORE_COL_CASE(TYPE) \
    112112case PS_TYPE_##TYPE: \
    113 for (int i = 0; i < in->numRows; i++) { \
    114     out->data.TYPE[i] = input->data.TYPE[i][col]; \
     113for (int i = 0; i < input->numRows; i++) { \
     114    out->data.TYPE[i] = input->data.TYPE[i][column]; \
    115115} \
    116116break;
Note: See TracChangeset for help on using the changeset viewer.