From 0c1a521ce5da7372aaeb9a58ca55b43ba94611b8 Mon Sep 17 00:00:00 2001 From: Ulf Samuelsson Date: Wed, 12 Sep 2007 05:56:42 +0000 Subject: Watching all the warnings on package/config finally got to me. A patch that clears the gcc warnings from config with cast changes only. thanks, I feel better now, Rick Foos --- package/config/lxdialog/inputbox.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'package/config/lxdialog') diff --git a/package/config/lxdialog/inputbox.c b/package/config/lxdialog/inputbox.c index 05e72066b..fe523b8ce 100644 --- a/package/config/lxdialog/inputbox.c +++ b/package/config/lxdialog/inputbox.c @@ -52,7 +52,7 @@ int dialog_inputbox(const char *title, const char *prompt, int height, int width if (!init) instr[0] = '\0'; else - strcpy(instr, init); + strcpy((char *)instr, init); do_resize: if (getmaxy(stdscr) <= (height - 2)) @@ -105,7 +105,7 @@ do_resize: for (i = 0; i < box_width - 1; i++) waddch(dialog, instr[scroll + i]); } else { - waddstr(dialog, instr); + waddstr(dialog, (char *)instr); } wmove(dialog, box_y, box_x + input_x); @@ -136,7 +136,7 @@ do_resize: waddch(dialog, instr[scroll + input_x + i] ? instr[scroll + input_x + i] : ' '); - input_x = strlen(instr) - scroll; + input_x = strlen((char *)instr) - scroll; } else input_x--; instr[scroll + input_x] = '\0'; -- cgit v1.2.3