IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 21389


Ignore:
Timestamp:
Feb 6, 2009, 1:34:03 PM (17 years ago)
Author:
eugene
Message:

wrong arguments to psError

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psMathUtils.c

    r17566 r21389  
    33 *  This file contains standard math routines.
    44 *
    5  *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    6  *  @date $Date: 2008-05-07 23:11:58 $
     5 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     6 *  @date $Date: 2009-02-06 23:34:03 $
    77 *
    88 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    134134            char* strType;
    135135            PS_TYPE_NAME(strType, x->type.type);
    136             psError(PS_ERR_BAD_PARAMETER_TYPE, "psLib type %s is not supported.", strType);
     136            psError(PS_ERR_BAD_PARAMETER_TYPE, true, "psLib type %s is not supported.", strType);
    137137            *status = PS_BINARY_DISECT_INVALID_TYPE;
    138138            return 0;
     
    235235            char* strType;
    236236            PS_TYPE_NAME(strType, x->type.type);
    237             psError(PS_ERR_BAD_PARAMETER_TYPE, "psLib type %s is not supported.", strType);
     237            psError(PS_ERR_BAD_PARAMETER_TYPE, true, "psLib type %s is not supported.", strType);
    238238            return NULL;
    239239        }
     
    306306            char* strType;
    307307            PS_TYPE_NAME(strType, myData->type.type);
    308             psError(PS_ERR_BAD_PARAMETER_TYPE, "psLib type %s is not supported.", strType);
     308            psError(PS_ERR_BAD_PARAMETER_TYPE, true, "psLib type %s is not supported.", strType);
    309309            break;
    310310        }
Note: See TracChangeset for help on using the changeset viewer.