IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 3, 2004, 4:02:10 PM (22 years ago)
Author:
desonia
Message:

fixed problems with psError and associate parameter checking macros.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/pmNonLinear.c

    r2130 r2275  
    55 *  @author George Gusciora, MHPCC
    66 *
    7  *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2004-10-14 21:44:08 $
     7 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2004-11-04 02:02:10 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3434    int j;
    3535
    36     PS_CHECK_NULL_PTR_RETURN_NULL(in);
    37     PS_CHECK_NULL_PTR_RETURN_NULL(in->image);
    38     PS_CHECK_NULL_PTR_RETURN_NULL(coeff);
     36    PS_PTR_CHECK_NULL(in,NULL);
     37    PS_PTR_CHECK_NULL(in->image, NULL);
     38    PS_PTR_CHECK_NULL(coeff,NULL);
    3939
    4040    for (i=0;i<(in->image)->numRows;i++) {
     
    5858                                const psVector *outFlux)
    5959{
    60     PS_CHECK_NULL_PTR_RETURN_NULL(in);
    61     PS_CHECK_NULL_PTR_RETURN_NULL(in->image);
    62     PS_CHECK_NULL_PTR_RETURN_NULL(inFlux);
    63     PS_CHECK_NULL_PTR_RETURN_NULL(outFlux);
     60    PS_PTR_CHECK_NULL(in,NULL);
     61    PS_PTR_CHECK_NULL(in->image,NULL);
     62    PS_PTR_CHECK_NULL(inFlux,NULL);
     63    PS_PTR_CHECK_NULL(outFlux,NULL);
    6464
    6565    int i;
Note: See TracChangeset for help on using the changeset viewer.