IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 27, 2007, 4:55:51 PM (19 years ago)
Author:
jhoblitt
Message:

fix PS_ASSERT_PTR() to be called on ptr not &ptr

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/psString.c

    r14679 r14682  
    1313 *  @author David Robbins, MHPCC
    1414 *
    15  *  @version $Revision: 1.55 $ $Name: not supported by cvs2svn $
    16  *  @date $Date: 2007-08-27 23:24:21 $
     15 *  @version $Revision: 1.56 $ $Name: not supported by cvs2svn $
     16 *  @date $Date: 2007-08-28 02:55:51 $
    1717 *
    1818 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    121121{
    122122    PS_ASSERT_PTR_NON_NULL(dest, 0);
    123     PS_ASSERT_PTR(dest, 0);
     123    PS_ASSERT_PTR(*dest, 0);
    124124    PS_ASSERT_STRING_NON_EMPTY(format, 0);
    125125
     
    140140{
    141141    PS_ASSERT_PTR_NON_NULL(dest, 0);
    142     PS_ASSERT_PTR(dest, 0);
     142    PS_ASSERT_PTR(*dest, 0);
    143143    PS_ASSERT_STRING_NON_EMPTY(format, 0);
    144144
     
    194194{
    195195    PS_ASSERT_PTR_NON_NULL(dest, 0);
    196     PS_ASSERT_PTR(dest, 0);
     196    PS_ASSERT_PTR(*dest, 0);
    197197    PS_ASSERT_STRING_NON_EMPTY(format, 0);
    198198
     
    214214{
    215215    PS_ASSERT_PTR_NON_NULL(dest, 0);
    216     PS_ASSERT_PTR(dest, 0);
     216    PS_ASSERT_PTR(*dest, 0);
    217217    PS_ASSERT_STRING_NON_EMPTY(format, 0);
    218218
Note: See TracChangeset for help on using the changeset viewer.