From 3adc4c2e727d3f7a871bc360d4d02e72b1c57e1a Mon Sep 17 00:00:00 2001 From: Gregor Haas Date: Mon, 24 Feb 2020 16:18:10 -0500 Subject: [PATCH] report actual count --- c8_remote/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/c8_remote/main.c b/c8_remote/main.c index 5013fbd..5608b33 100644 --- a/c8_remote/main.c +++ b/c8_remote/main.c @@ -564,7 +564,7 @@ int main() return -1; } - printf("have count %lli\n", data.count); + printf("have count %lli\n", data.count / 16); taverage = data.ttotal / (double) data.count; for(j = 0; j < 16; j++) @@ -578,7 +578,7 @@ int main() } } - sprintf(linebuf, "dat_%lli.dat", data.count); + sprintf(linebuf, "dat_%lli.dat", data.count / 16); outfile = fopen(linebuf, "w+"); if(outfile == NULL) {