IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 836


Ignore:
Timestamp:
Jun 2, 2004, 2:32:32 PM (22 years ago)
Author:
harman
Message:

Bug updates

Location:
trunk/psLib/src
Files:
4 edited

Legend:

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

    r614 r836  
    1010 *  @author Ross Harman, MHPCC
    1111 *   
    12  *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-05-08 00:08:27 $
     12 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-06-03 00:32:32 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    185185    inBits2 = inBitSet2->bits;
    186186
    187     tempChar = toupper(*operator);
     187    tempChar = toupper(operator[0]);
    188188    switch(tempChar) {
    189189    case 'A':
     
    203203        break;
    204204    default:
    205         psError(__func__, " : Line %d - Invalid psBitMask binary operation: %s\n", __LINE__);
     205        psError(__func__, " : Line %d - Invalid psBitMask binary operation: %s\n", __LINE__, operator);
    206206    }
    207207
  • trunk/psLib/src/collections/psVector.h

    r831 r836  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2004-06-02 23:29:14 $
     11 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2004-06-03 00:32:32 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    4444        psC32   *C32;                   ///< Single-precision complex data.
    4545        psC64   *C64;                   ///< Double-precision complex data.
    46         psPTR   *PTR;                   ///< Void pointers
    47         psPTR    V;                     ///< Pointer to data
     46        psPTR   *PTR;                   ///< Void pointers.
     47        psPTR    V;                     ///< Pointer to data.
    4848    } data;                             ///< Union for data types.
    4949}
  • trunk/psLib/src/mathtypes/psVector.h

    r831 r836  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2004-06-02 23:29:14 $
     11 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2004-06-03 00:32:32 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    4444        psC32   *C32;                   ///< Single-precision complex data.
    4545        psC64   *C64;                   ///< Double-precision complex data.
    46         psPTR   *PTR;                   ///< Void pointers
    47         psPTR    V;                     ///< Pointer to data
     46        psPTR   *PTR;                   ///< Void pointers.
     47        psPTR    V;                     ///< Pointer to data.
    4848    } data;                             ///< Union for data types.
    4949}
  • trunk/psLib/src/types/psBitSet.c

    r614 r836  
    1010 *  @author Ross Harman, MHPCC
    1111 *   
    12  *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-05-08 00:08:27 $
     12 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-06-03 00:32:32 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    185185    inBits2 = inBitSet2->bits;
    186186
    187     tempChar = toupper(*operator);
     187    tempChar = toupper(operator[0]);
    188188    switch(tempChar) {
    189189    case 'A':
     
    203203        break;
    204204    default:
    205         psError(__func__, " : Line %d - Invalid psBitMask binary operation: %s\n", __LINE__);
     205        psError(__func__, " : Line %d - Invalid psBitMask binary operation: %s\n", __LINE__, operator);
    206206    }
    207207
Note: See TracChangeset for help on using the changeset viewer.