IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 24852


Ignore:
Timestamp:
Jul 17, 2009, 6:01:01 PM (17 years ago)
Author:
giebink
Message:

Removed sixth argument in calls to pmSourcesWrite_PS1_DEV_1()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/test/objects/tap_pmSourceIO_PS1_DEV_1.c

    r21223 r24852  
    4848        psMetadata *tableHeader = psMetadataAlloc();
    4949        psString extname = psStringCopy("ext");
    50         bool rc = pmSourcesWrite_PS1_DEV_1(NULL, sources, imageHeader, tableHeader, extname, NULL);
     50        bool rc = pmSourcesWrite_PS1_DEV_1(NULL, sources, imageHeader, tableHeader, extname);
    5151        ok(rc == false, "pmSourcesWrite_PS1_DEV_1() returned FALSE with NULL psFits input parameter");
    5252        psFree(fitsFile);
     
    7272        psMetadata *tableHeader = psMetadataAlloc();
    7373        psString extname = psStringCopy("ext");
    74         bool rc = pmSourcesWrite_PS1_DEV_1(fitsFile, NULL, imageHeader, tableHeader, extname, NULL);
     74        bool rc = pmSourcesWrite_PS1_DEV_1(fitsFile, NULL, imageHeader, tableHeader, extname);
    7575        ok(rc == false, "pmSourcesWrite_PS1_DEV_1() returned FALSE with NULL pmSource input parameter");
    7676        psFree(fitsFile);
     
    9696        psMetadata *tableHeader = psMetadataAlloc();
    9797        psString extname = psStringCopy("ext");
    98         bool rc = pmSourcesWrite_PS1_DEV_1(fitsFile, sources, imageHeader, tableHeader, NULL, NULL);
     98        bool rc = pmSourcesWrite_PS1_DEV_1(fitsFile, sources, imageHeader, tableHeader, NULL);
    9999        ok(rc == false, "pmSourcesWrite_PS1_DEV_1() returned FALSE with NULL extname input parameter");
    100100        psFree(fitsFile);
     
    216216        psMetadata *tableHeader = psMetadataAlloc();
    217217        psString extname = psStringCopy("ext");
    218         bool rc = pmSourcesWrite_PS1_DEV_1(fitsFile, sources, imageHeader, tableHeader, extname, NULL);
     218        bool rc = pmSourcesWrite_PS1_DEV_1(fitsFile, sources, imageHeader, tableHeader, extname);
    219219        ok(rc == true, "pmSourcesWrite_PS1_DEV_1() returned TRUE with acceptable input parameters");
    220220        psFree(fitsFile);
Note: See TracChangeset for help on using the changeset viewer.