gettimeofday(&after, nullptr);
- const double total = (after.tv_sec - before.tv_sec)
- + (after.tv_usec - before.tv_usec) / 1.0e6;
+ const auto total = static_cast<double>(after.tv_sec - before.tv_sec)
+ + static_cast<double>(after.tv_usec - before.tv_usec) / 1.0e6;
const double perCallMs = total / 2 / N * 1000;
printf("csync_excluded: %f ms per call\n", perCallMs);
}
gettimeofday(&after, nullptr);
- const double total = (after.tv_sec - before.tv_sec)
- + (after.tv_usec - before.tv_usec) / 1.0e6;
+ const auto total = static_cast<double>(after.tv_sec - before.tv_sec)
+ + static_cast<double>(after.tv_usec - before.tv_usec) / 1.0e6;
const double perCallMs = total / 2 / N * 1000;
printf("csync_excluded_traversal: %f ms per call\n", perCallMs);
}
if( !sv->result ) {
sv->result = c_strdup( subdir_out);
} else {
- int newlen = 1+strlen(sv->result)+strlen(subdir_out);
+ const auto newlen = 1 + strlen(sv->result)+strlen(subdir_out);
char *tmp = sv->result;
sv->result = (char*)c_malloc(newlen);
strcpy( sv->result, tmp);
"<DIR> C:/tmp/csync_test/vierzig/mann/auf/des/toten/Mann/kiste/ooooooooooooooooooooooh/and/ne/bottle/voll/rum/und/so/singen/wir/VIERZIG/MANN/AUF/DES/TOTEN/MANNS/KISTE/OOOOOOOOH/AND/NE/BOTTLE/VOLL/RUM/undnochmalallezusammen/VierZig/MannaufDesTotenManns/KISTE/ooooooooooooooooooooooooooohhhhhh/und/BESSER/ZWEI/Butteln/VOLL RUM";
/* assemble the result string ... */
- int overall_len = 1+strlen(r1)+strlen(r2)+strlen(r3);
+ const auto overall_len = 1 + strlen(r1) + strlen(r2) + strlen(r3);
int files_cnt = 0;
char *result = (char*)c_malloc(overall_len);
*result = '\0';