IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 37667


Ignore:
Timestamp:
Nov 24, 2014, 4:20:31 AM (12 years ago)
Author:
eugene
Message:

build issue on a static, missed a continue

Location:
branches/eam_branches/ipp-20140904/Ohana/src/libdvo/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20140904/Ohana/src/libdvo/src/HostTable.c

    r37652 r37667  
    204204      for (k = 0; !found && (k < table->Nhosts); k++) {
    205205        if (foundHost[k]) continue;
    206         if (strcmp(unique_hosts[j], table->hosts[k].hostname));
     206        if (strcmp(unique_hosts[j], table->hosts[k].hostname)) continue;
    207207        groups[i].hosts[groups[i].Nhosts] = &table->hosts[k];
    208208        groups[i].Nhosts ++;
  • branches/eam_branches/ipp-20140904/Ohana/src/libdvo/src/galaxy_model.c

    r37601 r37667  
    44static double iFkap = 0.001 / 4.74047; // (km/sec/kpc) / (arcsec/ year)
    55
    6 static double A_oort = NAN; // km/sec/kpc
    7 static double B_oort = NAN; // km/sec/kpc
    8 static double U_sol  = NAN; // km/sec
    9 static double V_sol  = NAN; // km/sec
    10 static double W_sol  = NAN; // km/sec
     6double A_oort = 0.0; // km/sec/kpc
     7double B_oort = 0.0; // km/sec/kpc
     8double U_sol  = 0.0; // km/sec
     9double V_sol  = 0.0; // km/sec
     10double W_sol  = 0.0; // km/sec
    1111
    1212int InitGalaxyModel (char *version) {
Note: See TracChangeset for help on using the changeset viewer.