IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 3, 2004, 3:05:00 PM (22 years ago)
Author:
desonia
Message:

changed the psError signature to match SDRS. Also made misc. cleanups as
I was combing the files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/psScalar.c

    r2055 r2273  
    88 *  @author Ross Harman, MHPCC
    99 *
    10  *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2004-10-12 19:32:44 $
     10 *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2004-11-04 01:04:57 $
    1212 *
    1313 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    7070        break;
    7171    default:
    72         psErrorMsg(PS_ERRORNAME_DOMAIN "psScalarAlloc",
    73                    PS_ERR_BAD_PARAMETER_TYPE, true,
    74                    PS_ERRORTEXT_psScalar_UNSUPPORTED_TYPE,
    75                    dataType);
     72        psError(PS_ERR_BAD_PARAMETER_TYPE, true,
     73                PS_ERRORTEXT_psScalar_UNSUPPORTED_TYPE,
     74                dataType);
    7675    }
    7776
     
    8584
    8685    if (scalar == NULL) {
    87         psErrorMsg(PS_ERRORNAME_DOMAIN "psScalarCopy",
    88                    PS_ERR_BAD_PARAMETER_NULL, true,
    89                    PS_ERRORTEXT_psScalar_COPY_NULL);
     86        psError(PS_ERR_BAD_PARAMETER_NULL, true,
     87                PS_ERRORTEXT_psScalar_COPY_NULL);
    9088        return NULL;
    9189    }
     
    130128        break;
    131129    default:
    132         psErrorMsg(PS_ERRORNAME_DOMAIN "psScalarCopy",
    133                    PS_ERR_BAD_PARAMETER_TYPE, true,
    134                    PS_ERRORTEXT_psScalar_UNSUPPORTED_TYPE,
    135                    dataType);
     130        psError(PS_ERR_BAD_PARAMETER_TYPE, true,
     131                PS_ERRORTEXT_psScalar_UNSUPPORTED_TYPE,
     132                dataType);
    136133    }
    137134
Note: See TracChangeset for help on using the changeset viewer.