From a12c5d99df634bec3f95f2e10664b429173e49aa Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Fri, 27 Mar 2020 17:13:08 +0100 Subject: fix issues in Mandelbrot due to modifications in the source code --- test/c/mandelbrot.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'test/c') diff --git a/test/c/mandelbrot.c b/test/c/mandelbrot.c index fb8b929c..548c3ffa 100644 --- a/test/c/mandelbrot.c +++ b/test/c/mandelbrot.c @@ -59,7 +59,6 @@ int main (int argc, char **argv) if(bit_num == 8) { - printf("%c", byte_acc); putc(byte_acc,stdout); #ifdef __K1C__ // stdout isn't flushed enough when --syscall=libstd_scalls.so is passed to the simulator k1-cluster fflush(stdout); @@ -70,7 +69,6 @@ int main (int argc, char **argv) else if(x == w-1) { byte_acc <<= (8-w%8); - printf("%c", byte_acc); putc(byte_acc,stdout); #ifdef __K1C__ // stdout isn't flushed enough when --syscall=libstd_scalls.so is passed to the simulator k1-cluster fflush(stdout); -- cgit