Replace unsigned long int by uint64_t and long int by int64_t in tests

This commit is contained in:
Carles Fernandez
2018-08-10 21:16:10 +02:00
parent 6b1611b3a9
commit 2b65c1b550
42 changed files with 98 additions and 94 deletions
+1 -1
View File
@@ -485,7 +485,7 @@ int main(int argc, char** argv)
fprintf(stdout, "Reference Time:\n");
fprintf(stdout, " GPS Week: %d\n", Eph_map.begin()->second.i_GPS_week);
fprintf(stdout, " GPS TOW: %ld %lf\n", (int64_t)current_TOW, (int64_t)current_TOW * 0.08);
fprintf(stdout, " GPS TOW: %lld %lf\n", (int64_t)current_TOW, (int64_t)current_TOW * 0.08);
fprintf(stdout, " ~ UTC: %s", ctime(&t));
std::cout << "Current TOW obtained from SUPL assistance = " << current_TOW << std::endl;
}