public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [TRIVIAL] signed/unsigned char fix for make menuconfig
@ 2005-07-27 18:14 Keenan Pepper
  2005-07-27 20:18 ` Sam Ravnborg
  0 siblings, 1 reply; 2+ messages in thread
From: Keenan Pepper @ 2005-07-27 18:14 UTC (permalink / raw)
  To: linux-kernel

Quiet some silly warnings.


--- linux-2.6.13-rc3-mm2/scripts/lxdialog/dialog.orig.h 2005-07-27 
13:59:02.389806392 -0400
+++ linux-2.6.13-rc3-mm2/scripts/lxdialog/dialog.h      2005-07-27 
13:59:13.437126944 -0400
@@ -163,7 +163,7 @@
  int dialog_checklist (const char *title, const char *prompt, int height,
		int width, int list_height, int item_no,
		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 width, const char *init);

--- linux-2.6.13-rc3-mm2/scripts/lxdialog/inputbox.orig.c       2005-07-27 
13:57:57.647648696 -0400
+++ linux-2.6.13-rc3-mm2/scripts/lxdialog/inputbox.c    2005-07-27 
13:58:37.336615056 -0400
@@ -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 @@
  {
      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 */

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-07-27 20:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-27 18:14 [PATCH] [TRIVIAL] signed/unsigned char fix for make menuconfig Keenan Pepper
2005-07-27 20:18 ` Sam Ravnborg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox