IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 1:34:58 PM (22 years ago)
Author:
desonia
Message:

cleanup of some indent-induced madness.

File:
1 edited

Legend:

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

    r1407 r1440  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2004-08-07 00:06:06 $
     11 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2004-08-09 23:34:57 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    7171
    7272/*****************************************************************************/
    73 psScalar *psScalarAlloc(psC64 value, psElemType dataType)
     73psScalar* psScalarAlloc(psC64 value, psElemType dataType)
    7474{
    75     psScalar *scalar = NULL;
     75    psScalar* scalar = NULL;
    7676
    7777    // Create scalar
    78     scalar = (psScalar *) psAlloc(sizeof(psScalar));
     78    scalar = (psScalar* ) psAlloc(sizeof(psScalar));
    7979    if (scalar == NULL) {
    8080        psAbort(__func__, " : Line %d - Failed to allocate memory", __LINE__);
     
    128128}
    129129
    130 void psScalarFree(psScalar * restrict scalar)
     130void psScalarFree(psScalar* restrict scalar)
    131131{
    132132    if (scalar == NULL) {
Note: See TracChangeset for help on using the changeset viewer.