aboutsummaryrefslogtreecommitdiff
path: root/scripts/config/lxdialog/inputbox.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-04-20 04:00:11 +0000
committerMike Frysinger <vapier@gentoo.org>2006-04-20 04:00:11 +0000
commitf162183527874d0027af008dd14a6b21615d27de (patch)
tree7c7017e15bcd9f2c1f77b0ae7134e2b0805f7d42 /scripts/config/lxdialog/inputbox.c
parent998dbee6d9494c4dee29a2abe195d79d9b1c2e08 (diff)
downloadbusybox-f162183527874d0027af008dd14a6b21615d27de.tar.gz
kill signed warnings
Diffstat (limited to 'scripts/config/lxdialog/inputbox.c')
-rw-r--r--scripts/config/lxdialog/inputbox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/config/lxdialog/inputbox.c b/scripts/config/lxdialog/inputbox.c
index fa7bebc69..074d2d68b 100644
--- a/scripts/config/lxdialog/inputbox.c
+++ b/scripts/config/lxdialog/inputbox.c
@@ -21,7 +21,7 @@
#include "dialog.h"
-unsigned char dialog_input_result[MAX_LEN + 1];
+char dialog_input_result[MAX_LEN + 1];
/*
* Print the termination buttons
@@ -48,7 +48,7 @@ dialog_inputbox (const char *title, const char *prompt, int height, int width,
{
int i, x, y, box_y, box_x, box_width;
int input_x = 0, scroll = 0, key = 0, button = -1;
- unsigned char *instr = dialog_input_result;
+ char *instr = dialog_input_result;
WINDOW *dialog;
/* center dialog box on screen */