diff options
Diffstat (limited to 'src/partialator.c')
-rw-r--r-- | src/partialator.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/partialator.c b/src/partialator.c index 88dc0063..a50ea8d5 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -370,9 +370,8 @@ int main(int argc, char *argv[]) } fclose(fh); - STATUS("Found %5.2f%% of the expected peaks (%i %i %i).\n", - 100.0 * (double)n_found / n_expected, - n_found, n_notfound, n_expected); + STATUS("Found %5.2f%% of the expected peaks (missed %i of %i).\n", + 100.0 * (double)n_found / n_expected, n_notfound, n_expected); cts = new_list_count(); |