diff options
author | sonic74 <sonic74@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2011-12-08 16:16:08 +0000 |
---|---|---|
committer | sonic74 <sonic74@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2011-12-08 16:16:08 +0000 |
commit | 27da4769fd488b7dd860e88655542cbc4fbf04c1 (patch) | |
tree | 75b2d272d77a06af417fe3bef736207885a86efd | |
parent | 5d473ec959cc50248277d7b48cf3b1240be08877 (diff) | |
download | lcd4linux-27da4769fd488b7dd860e88655542cbc4fbf04c1.tar.gz |
Removed compiler warning
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1161 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
-rwxr-xr-x | drv_D4D.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -116,7 +116,7 @@ static void drv_D4D_receive_ACK() static void drv_D4D_send_nowait(const char *data, const unsigned int len) { - if (len > 1 && data[0] >= 32 && data[0] <= 127) + if (len > 1 && data[0] >= 32 && data[0] < 127) debug("drv_D4D_send_nowait('%c'", data[0]); drv_generic_serial_write(data, len); } |