From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:53130) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UUIIo-0008Uy-Vj for qemu-devel@nongnu.org; Mon, 22 Apr 2013 11:05:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UUIIn-0001Te-6g for qemu-devel@nongnu.org; Mon, 22 Apr 2013 11:05:10 -0400 Received: from mx1.redhat.com ([209.132.183.28]:62452) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UUIIm-0001TB-UF for qemu-devel@nongnu.org; Mon, 22 Apr 2013 11:05:09 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3MF58Ww017569 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 22 Apr 2013 11:05:08 -0400 From: Alon Levy Date: Mon, 22 Apr 2013 18:04:34 +0300 Message-Id: <1366643098-2566-5-git-send-email-alevy@redhat.com> In-Reply-To: <1366643098-2566-1-git-send-email-alevy@redhat.com> References: <1366643098-2566-1-git-send-email-alevy@redhat.com> Subject: [Qemu-devel] [PATCH v3 04/28] ccid: declare DEFAULT_ATR table to be "static const" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: mlureau@redhat.com From: Jim Meyering Signed-off-by: Jim Meyering --- hw/usb/ccid-card-passthru.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/usb/ccid-card-passthru.c b/hw/usb/ccid-card-passthru.c index 71a45f6..275b887 100644 --- a/hw/usb/ccid-card-passthru.c +++ b/hw/usb/ccid-card-passthru.c @@ -27,7 +27,7 @@ do { \ #define D_VERBOSE 4 /* TODO: do we still need this? */ -uint8_t DEFAULT_ATR[] = { +static const uint8_t DEFAULT_ATR[] = { /* * From some example somewhere * 0x3B, 0xB0, 0x18, 0x00, 0xD1, 0x81, 0x05, 0xB1, 0x40, 0x38, 0x1F, 0x03, 0x28 -- 1.8.2