Commit 84c2a2eb authored by Keenan Pepper's avatar Keenan Pepper Committed by Sam Ravnborg

[PATCH] kbuild: signed/unsigned char fix for make menuconfig

Quiet some silly warnings.
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent db8c1a7b
...@@ -163,7 +163,7 @@ int dialog_menu (const char *title, const char *prompt, int height, int width, ...@@ -163,7 +163,7 @@ int dialog_menu (const char *title, const char *prompt, int height, int width,
int dialog_checklist (const char *title, const char *prompt, int height, int dialog_checklist (const char *title, const char *prompt, int height,
int width, int list_height, int item_no, int width, int list_height, int item_no,
const char * const * items, int flag); const char * const * items, int flag);
extern unsigned char dialog_input_result[]; extern char dialog_input_result[];
int dialog_inputbox (const char *title, const char *prompt, int height, int dialog_inputbox (const char *title, const char *prompt, int height,
int width, const char *init); int width, const char *init);
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include "dialog.h" #include "dialog.h"
unsigned char dialog_input_result[MAX_LEN + 1]; char dialog_input_result[MAX_LEN + 1];
/* /*
* Print the termination buttons * Print the termination buttons
...@@ -48,7 +48,7 @@ dialog_inputbox (const char *title, const char *prompt, int height, int width, ...@@ -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 i, x, y, box_y, box_x, box_width;
int input_x = 0, scroll = 0, key = 0, button = -1; int input_x = 0, scroll = 0, key = 0, button = -1;
unsigned char *instr = dialog_input_result; char *instr = dialog_input_result;
WINDOW *dialog; WINDOW *dialog;
/* center dialog box on screen */ /* center dialog box on screen */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment