IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 28, 2004, 1:26:49 PM (22 years ago)
Author:
desonia
Message:

changed function prototypes to match changes in the SDRS.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/collections/tst_psArray.c

    r1406 r1920  
    1212 *  @author  Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
    15  *  @date  $Date: 2004-08-06 22:34:05 $
     14 *  @version $Revision: 1.3 $  $Name: not supported by cvs2svn $
     15 *  @date  $Date: 2004-09-28 23:26:49 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    8383    // Test C - Reallocate void pointer array bigger
    8484    printPositiveTestHeader(stdout,"psArray", "Reallocate void pointer array bigger");
    85     psArr = psArrayRealloc(10, psArr);
     85    psArr = psArrayRealloc(psArr,10);
    8686    printf("Adding more elements to void pointer array...\n");
    8787    for(int i = 5; i < 10; i++) {
     
    117117    // Test D - Reallocate void pointer array smaller
    118118    printPositiveTestHeader(stdout,"psArray","Reallocate void pointer array smaller");
    119     psArr = psArrayRealloc(3, psArr);
     119    psArr = psArrayRealloc(psArr,3);
    120120    for(int i = 0; i < 3; i++) {
    121121        testStruct *ts = (testStruct*)psArr->data[i];
Note: See TracChangeset for help on using the changeset viewer.