remove debugging - ploot - simple plotting tools | |
git clone git://bitreich.org/ploot git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
LICENSE | |
--- | |
commit 6d206dec470107adc7708b518bff521d8974f8a7 | |
parent 1a79b31f23eda5a963cf1dbb2d8f77b8baae5270 | |
Author: Josuah Demangeon <[email protected]> | |
Date: Mon, 7 May 2018 01:17:38 +0200 | |
remove debugging | |
Diffstat: | |
M plootxt.c | 6 ++---- | |
1 file changed, 2 insertions(+), 4 deletions(-) | |
--- | |
diff --git a/plootxt.c b/plootxt.c | |
@@ -29,11 +29,9 @@ plot_dot(long *out, int row, int col) | |
{ 0x02, 0x10 }, | |
{ 0x04, 0x20 }, | |
{ 0x40, 0x80 }, | |
- }, f; | |
+ }; | |
- f = flags[row][col]; | |
- puts("."), fflush(stdout); | |
- *out |= f; | |
+ *out |= flags[row][col];; | |
} | |
static void |