From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Clark Subject: [PATCH] tiny signed char fix in arch/x86/cdb.c Date: Wed, 31 Aug 2005 23:42:41 +0100 Message-ID: Reply-To: cwc22@cam.ac.uk Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Content-Disposition: inline List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel List-Id: xen-devel@lists.xenproject.org build fix for gcc 4.0.1 Signed-off-by: Christopher Clark diff -r 8af8ddf91078 xen/arch/x86/cdb.c --- a/xen/arch/x86/cdb.c Wed Aug 31 14:53:43 2005 +++ b/xen/arch/x86/cdb.c Wed Aug 31 15:39:43 2005 @@ -21,7 +21,7 @@ debugger. so avoid it. */ #define dbg_printk(...) -static unsigned char opt_cdb[30] =3D "none"; +static char opt_cdb[30] =3D "none"; string_param("cdb", opt_cdb); struct xendbg_context {