Skip to content

Commit d36570f

Browse files
Improve translation-readiness of string with subclause
1 parent 4f8695f commit d36570f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/froll.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1625,7 +1625,8 @@ void frollmedianFast(const double *x, uint64_t nx, ans_t *ans, int k, double fil
16251625
setlinks(&o[j*k], &next[j*(k+1)], &prev[j*(k+1)], tail);
16261626
}
16271627
if (verbose)
1628-
snprintf(end(ans->message[0]), 500, _("%s: finding order and initializing links for %d blocks %stook %.3fs\n"), "frollmedianFast", b, par ? "in parallel " : "", omp_get_wtime()-tic);
1628+
snprintf(end(ans->message[0]), 500, par ? _("%s: finding order and initializing links for %d blocks in parallel took %.3fs\n")
1629+
: _("%s: finding order and initializing links for %d blocks in serial took %.3fs\n"), "frollmedianFast", b, omp_get_wtime()-tic);
16291630
// fill leading partial window
16301631
for (int i=0; i<k-1; i++) {
16311632
ansv[i] = fill;

0 commit comments

Comments
 (0)