From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:60868) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UHZqW-0003j5-Sl for qemu-devel@nongnu.org; Mon, 18 Mar 2013 09:11:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UHZqU-0000jq-Gd for qemu-devel@nongnu.org; Mon, 18 Mar 2013 09:11:24 -0400 Received: from mx1.redhat.com ([209.132.183.28]:5256) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UHZqU-0000jl-7q for qemu-devel@nongnu.org; Mon, 18 Mar 2013 09:11:22 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r2IDBLFB029050 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 18 Mar 2013 09:11:21 -0400 From: Alon Levy Date: Mon, 18 Mar 2013 15:10:50 +0200 Message-Id: <1363612272-13713-5-git-send-email-alevy@redhat.com> In-Reply-To: <1363612272-13713-1-git-send-email-alevy@redhat.com> References: <1363612272-13713-1-git-send-email-alevy@redhat.com> Subject: [Qemu-devel] [PATCH 04/26] 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/ccid-card-passthru.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/ccid-card-passthru.c b/hw/ccid-card-passthru.c index 984bd0b..3566e55 100644 --- a/hw/ccid-card-passthru.c +++ b/hw/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.1.4