IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 27, 2004, 10:20:11 AM (22 years ago)
Author:
gusciora
Message:

I've been unifying the naming conventions for various macros that check
functions parameters for type, size, non-NULL ...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astronomy/psAstrometry.c

    r2212 r2214  
    88 *  @author George Gusciora, MHPCC
    99 *
    10  *  @version $Revision: 1.46 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2004-10-27 20:07:17 $
     10 *  @version $Revision: 1.47 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2004-10-27 20:20:11 $
    1212 *
    1313 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    229229    psS32 j;
    230230
    231     PS_CHECK_NULL_IMAGE(x, NULL);
    232     PS_CHECK_NULL_IMAGE(y, NULL);
    233     PS_CHECK_IMAGE_TYPE(x, PS_TYPE_F64, NULL);
    234     PS_CHECK_IMAGE_TYPE(y, PS_TYPE_F64, NULL);
     231    PS_IMAGE_CHECK_NULL(x, NULL);
     232    PS_IMAGE_CHECK_NULL(y, NULL);
     233    PS_IMAGE_CHECK_TYPE(x, PS_TYPE_F64, NULL);
     234    PS_IMAGE_CHECK_TYPE(y, PS_TYPE_F64, NULL);
    235235
    236236    tmp = (psFixedPattern *) psAlloc(sizeof(psFixedPattern));
Note: See TracChangeset for help on using the changeset viewer.