IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 3, 2006, 6:12:17 PM (20 years ago)
Author:
Paul Price
Message:

Fixes for compilation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppMerge/src/ppMerge.c

    r7061 r7064  
    44
    55#include "ppMerge.h"
    6 #include "ppMem.h"
     6#include "ppMergeConfig.h"
     7#include "ppMergeData.h"
     8#include "ppMergeOptions.h"
     9#include "ppMergeCheckInputs.h"
     10#include "ppMergeBackground.h"
     11#include "ppMergeCombine.h"
     12
     13//#include "ppMem.h"
    714
    815int main(int argc, char **argv)
    916{
    10     ppMergeOptions *options = ppMergeOptionsAlloc();
    11     ppConfig *config = ppConfigAlloc();
    12 
    1317    psTimerStart(TIMERNAME);
    1418
     
    2529    ppMergeData *data = ppMergeCheckInputs(options, config);
    2630    if (!data) {
    27         psError("Not enough valid input files.\n");
     31        psError(PS_ERR_IO, false, "Not enough valid input files.\n");
    2832        exit(EXIT_FAILURE);
    2933    }
     
    5054    pmConfigDone();
    5155
    52     ppMemCheck();
     56//    ppMemCheck();
    5357
    5458    return EXIT_SUCCESS;
Note: See TracChangeset for help on using the changeset viewer.