IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 11, 2016, 10:23:42 PM (10 years ago)
Author:
eugene
Message:

modify to pass with extremely pedantic build; force consistency for signed vs unsigned and int sizes; various relastro updates

Location:
trunk/Ohana
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana

  • trunk/Ohana/src/dvomerge/src/build_links.c

    r39334 r39457  
    180180/* build the initial links assuming the table is sorted */
    181181off_t *init_missing_links (Average *average, off_t Naverage, Missing *missing, off_t Nmissing) {
     182  OHANA_UNUSED_PARAM(missing);
    182183
    183184  off_t i, j, N;
  • trunk/Ohana/src/dvomerge/src/dvomergeCreate.c

    r38986 r39457  
    44// the output db may have a different SKY_DEPTH from the input dbs
    55int dvomergeCreate (int argc, char **argv) {
     6  OHANA_UNUSED_PARAM(argc);
    67
    78  int depth1, depth2;
  • trunk/Ohana/src/dvomerge/src/dvorepairDeleteImagesByExternID.c

    r39323 r39457  
    3232
    3333int dvorepairDeleteImagesByExternID (int argc, char **argv) {
     34  OHANA_UNUSED_PARAM(argc);
    3435
    3536  FITS_DB db;  // database handle pointing to input image table
     
    306307
    307308int RepairTableCPT_V1(char *cptFilenameSrc, char *cptFilenameTgt, char *cpsFilenameSrc, char *cpsFilenameTgt, Measure *measure, off_t Nmeasure, Image *image, off_t Nimage, myIndexType *imageIDindex, char catformat) {
     309  OHANA_UNUSED_PARAM(Nimage);
    308310
    309311  off_t *averefMatch;
  • trunk/Ohana/src/dvomerge/src/dvorepairFixImages.c

    r39323 r39457  
    126126
    127127int MarkMosaicsToDelete(Image *image, off_t Nimage, int *deleteIndex) {
     128  OHANA_UNUSED_PARAM(image);
     129  OHANA_UNUSED_PARAM(Nimage);
     130  OHANA_UNUSED_PARAM(deleteIndex);
    128131
    129132  myAbort ("this function needs to be redone with a concept to match the old BuildChipMatch");
  • trunk/Ohana/src/dvomerge/src/replace_match.c

    r38986 r39457  
    77// average and measure pointers to the objects of interest and their first / current measurement
    88int replace_match (Average *average_out, Measure *measure_out, off_t *next_meas, Average *average_in, Measure *measure_in) {
     9  OHANA_UNUSED_PARAM(average_in);
    910
    1011  int Nout;
  • trunk/Ohana/src/dvomerge/src/replace_tycho.c

    r38986 r39457  
    1111
    1212int replace_tycho (Average *averageOut, Measure *measureOut, off_t *next_meas, Average *averageInp, Measure *measureInp) {
     13  OHANA_UNUSED_PARAM(averageInp);
    1314
    1415  int i;
Note: See TracChangeset for help on using the changeset viewer.