IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 12499


Ignore:
Timestamp:
Mar 19, 2007, 2:13:55 PM (19 years ago)
Author:
jhoblitt
Message:

fix "maybe" uninitialized warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/mathtypes/psImage.c

    r12431 r12499  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.125 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2007-03-14 00:39:50 $
     11 *  @version $Revision: 1.126 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2007-03-20 00:13:55 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    752752    int lastX = input->numCols - 1; \
    753753    int lastY = input->numRows - 1; \
    754     ps##TYPE V00; \
    755     ps##TYPE V01; \
    756     ps##TYPE V10; \
    757     ps##TYPE V11; \
     754    ps##TYPE V00 = 0; \
     755    ps##TYPE V01 = 0; \
     756    ps##TYPE V10 = 0; \
     757    ps##TYPE V11 = 0; \
    758758    bool valid00; \
    759759    bool valid01; \
Note: See TracChangeset for help on using the changeset viewer.