aboutsummaryrefslogtreecommitdiffstats
path: root/src/send.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/send.c')
-rw-r--r--src/send.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/send.c b/src/send.c
index 54b0c1d..ff1e3f0 100644
--- a/src/send.c
+++ b/src/send.c
@@ -154,7 +154,6 @@ static int send_nibble(int n)
*/
static int send_byte(int c)
{
- printf("%i\n", c);
if (send_nibble((c >> 0) & 0x0F)) return -1;
if (send_nibble((c >> 4) & 0x0F)) return -1;
return 0;