aboutsummaryrefslogtreecommitdiff
path: root/src/partialator.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2011-02-12 14:56:39 -0800
committerThomas White <taw@physics.org>2012-02-22 15:27:14 +0100
commit4d4d8e549411cfc9361e3746ba60db130db46f07 (patch)
tree4084690b06ec7c0812d0a06668953823a63d3b9f /src/partialator.c
parent10c6b8737dfebcf24063935387fc21ad7a59cd4b (diff)
Tidy up debug output
Diffstat (limited to 'src/partialator.c')
-rw-r--r--src/partialator.c5
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();