IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 7, 2007, 12:50:18 PM (19 years ago)
Author:
gusciora
Message:

Fixed small compiler errors due to new compile flags.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/math/tap_psMatrix07.c

    r10816 r11685  
    1717 *  @author  Ross Harman, MHPCC
    1818 *
    19  *  @version $Revision: 1.1 $  $Name: not supported by cvs2svn $
    20  *  @date  $Date: 2006-12-20 20:02:29 $
     19 *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
     20 *  @date  $Date: 2007-02-07 22:50:18 $
    2121 *
    2222 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    204204        psVector *v1 = (psVector*)psVectorAlloc(3, PS_TYPE_F64);
    205205        ok(psMatrixToVector(v1, badImage) == NULL, "psMatrixToVector() returned NULL with improper sizes");
    206         psFree(badImage)
    207         psFree(v1)
     206        psFree(badImage);
     207        psFree(v1);
    208208        ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
    209209    }
     
    216216        psVector *v1_32 = (psVector*)psVectorAlloc(3, PS_TYPE_F32);
    217217        ok(psMatrixToVector(v1_32, badImage_32) == NULL, "psMatrixToVector() returned NULL with improper sizes");
    218         psFree(badImage_32)
    219         psFree(v1_32)
     218        psFree(badImage_32);
     219        psFree(v1_32);
    220220        ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
    221221    }
Note: See TracChangeset for help on using the changeset viewer.