From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1NQOJ1-0008Nd-5G for mharc-grub-devel@gnu.org; Thu, 31 Dec 2009 11:55:23 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NQOJ0-0008NF-1F for grub-devel@gnu.org; Thu, 31 Dec 2009 11:55:22 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NQOIv-0008L8-BS for grub-devel@gnu.org; Thu, 31 Dec 2009 11:55:21 -0500 Received: from [199.232.76.173] (port=33360 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NQOIv-0008Ky-6T for grub-devel@gnu.org; Thu, 31 Dec 2009 11:55:17 -0500 Received: from smtp4-g21.free.fr ([212.27.42.4]:49958) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NQOIu-0007O4-8H for grub-devel@gnu.org; Thu, 31 Dec 2009 11:55:16 -0500 Received: from smtp4-g21.free.fr (localhost [127.0.0.1]) by smtp4-g21.free.fr (Postfix) with ESMTP id 008CA4C8146 for ; Thu, 31 Dec 2009 17:55:12 +0100 (CET) Received: from yves.private.network (mar06-2-88-175-100-234.fbx.proxad.net [88.175.100.234]) by smtp4-g21.free.fr (Postfix) with ESMTP id 04AB94C80FF for ; Thu, 31 Dec 2009 17:55:10 +0100 (CET) Received: from yves.private.network (localhost [127.0.0.1]) by yves.private.network (Postfix) with ESMTP id 9FB3C265FAE for ; Thu, 31 Dec 2009 17:55:09 +0100 (CET) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=MIMEBOUNDARY To: grub-devel@gnu.org From: Yves Blusseau Date: Thu, 31 Dec 2009 17:55:09 +0100 Message-ID: <20091231165509.28764.95501.stgit@yves.private.network> In-Reply-To: <20091231165323.28764.29229.stgit@yves.private.network> References: <20091231165323.28764.29229.stgit@yves.private.network> User-Agent: StGit/0.15-rc4-1-g9ba6 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) Subject: [PATCH 3/3] Compilation with external intl library X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Dec 2009 16:55:22 -0000 This is a MIME message. --MIMEBOUNDARY Content-Disposition: inline MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit 2009-12-31 Yves Blusseau * util/mkisofs/mkisofs.c: fix a warning about a bad cast when NLS is disabled --- ChangeLog.bad-cast | 6 ++++++ util/mkisofs/mkisofs.c | 2 +- 2 files changed, 7 insertions(+), 1 deletions(-) create mode 100644 ChangeLog.bad-cast --MIMEBOUNDARY Content-Disposition: attachment; filename=bad-cast.patch MIME-Version: 1.0 Content-Type: text/plain; name=bad-cast.patch; charset="utf-8" Content-Transfer-Encoding: 7bit diff --git a/ChangeLog.bad-cast b/ChangeLog.bad-cast new file mode 100644 index 0000000..97ee16b --- /dev/null +++ b/ChangeLog.bad-cast @@ -0,0 +1,6 @@ +Compilation with external intl library + +2009-12-31 Yves Blusseau + + * util/mkisofs/mkisofs.c: fix a warning about a bad cast when NLS + is disabled diff --git a/util/mkisofs/mkisofs.c b/util/mkisofs/mkisofs.c index 4ed091b..57e77dd 100644 --- a/util/mkisofs/mkisofs.c +++ b/util/mkisofs/mkisofs.c @@ -490,7 +490,7 @@ void usage(){ int comma; int len; unsigned int j; - char *arg; + const char *arg; printf (" "); --MIMEBOUNDARY--