diff options
Diffstat (limited to 'package/config/lxdialog')
-rw-r--r-- | package/config/lxdialog/inputbox.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/config/lxdialog/inputbox.c b/package/config/lxdialog/inputbox.c index fe523b8ce..05e72066b 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((char *)instr, init); + strcpy(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, (char *)instr); + waddstr(dialog, 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((char *)instr) - scroll; + input_x = strlen(instr) - scroll; } else input_x--; instr[scroll + input_x] = '\0'; |