aboutsummaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-05-09 18:07:15 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-05-09 18:07:15 +0000
commit023dc6798e05373bf33d64221bbe6a7265734c34 (patch)
treec111bcbb60f73790b29f7dd4f030f8c1e87b29a8 /miscutils
parent98636eb08c5ecc216e18970e11f7021206ac9b04 (diff)
downloadbusybox-w32-023dc6798e05373bf33d64221bbe6a7265734c34.tar.gz
busybox-w32-023dc6798e05373bf33d64221bbe6a7265734c34.tar.bz2
busybox-w32-023dc6798e05373bf33d64221bbe6a7265734c34.zip
fix warnings about pointer signedness
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/less.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/less.c b/miscutils/less.c
index 37ec5d976..065bf6f38 100644
--- a/miscutils/less.c
+++ b/miscutils/less.c
@@ -731,7 +731,7 @@ static int less_getch(int pos)
731 again: 731 again:
732 less_gets_pos = pos; 732 less_gets_pos = pos;
733 memset(input, 0, sizeof(input)); 733 memset(input, 0, sizeof(input));
734 getch_nowait(input, sizeof(input)); 734 getch_nowait((char *)input, sizeof(input));
735 less_gets_pos = -1; 735 less_gets_pos = -1;
736 736
737 /* Detect escape sequences (i.e. arrow keys) and handle 737 /* Detect escape sequences (i.e. arrow keys) and handle