Fixed tx/rx counters type

This commit is contained in:
Martin Lund 2016-05-21 10:31:21 +02:00
parent 1c09b66881
commit 9a66de0aff

View file

@ -41,7 +41,7 @@
#include "tio/error.h"
static struct termios new_stdout, old_stdout, old_tio;
static long rx_total = 0, tx_total = 0;
static unsigned long rx_total = 0, tx_total = 0;
static bool connected = false;
static bool tainted = false;
static int fd;