commit | 023dc6798e05373bf33d64221bbe6a7265734c34 | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Fri May 09 18:07:15 2008 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Fri May 09 18:07:15 2008 +0000 |
tree | c111bcbb60f73790b29f7dd4f030f8c1e87b29a8 | |
parent | 98636eb08c5ecc216e18970e11f7021206ac9b04 [diff] [blame] |
fix warnings about pointer signedness
diff --git a/miscutils/less.c b/miscutils/less.c index 37ec5d9..065bf6f 100644 --- a/miscutils/less.c +++ b/miscutils/less.c
@@ -731,7 +731,7 @@ again: less_gets_pos = pos; memset(input, 0, sizeof(input)); - getch_nowait(input, sizeof(input)); + getch_nowait((char *)input, sizeof(input)); less_gets_pos = -1; /* Detect escape sequences (i.e. arrow keys) and handle