From: Keenan Pepper <keenanpepper@gmail.com>
To: linux-kernel@vger.kernel.org
Subject: [PATCH] [TRIVIAL] signed/unsigned char fix for make menuconfig
Date: Wed, 27 Jul 2005 14:14:00 -0400 [thread overview]
Message-ID: <42E7CEE8.4090103@gmail.com> (raw)
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 */
next reply other threads:[~2005-07-27 18:14 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-07-27 18:14 Keenan Pepper [this message]
2005-07-27 20:18 ` [PATCH] [TRIVIAL] signed/unsigned char fix for make menuconfig Sam Ravnborg
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=42E7CEE8.4090103@gmail.com \
--to=keenanpepper@gmail.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.