aboutsummaryrefslogtreecommitdiffstats
path: root/src/sim/card_fs_uicc.c
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2017-06-17 23:27:47 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2017-06-18 10:40:18 +0200
commit92274453e7a21a14789be7b074f6c52ec45716c7 (patch)
tree40df6123d6d75030927ca0cd4eab94b31cc8ca7e /src/sim/card_fs_uicc.c
parent69dfe5aeec3d2e08baa033309ac4b84712367ac6 (diff)
card_fs_uicc.c: Fix unused compilation warning
This array of bytes is not yet used but is referring to some specs. They may be used in the future, so leave it there but mark it explicitly as unused. Change-Id: I0a61d17f9989ecddafbc68d4b9446853e4c15159
Diffstat (limited to 'src/sim/card_fs_uicc.c')
-rw-r--r--src/sim/card_fs_uicc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/card_fs_uicc.c b/src/sim/card_fs_uicc.c
index 70737b6f..27afe34a 100644
--- a/src/sim/card_fs_uicc.c
+++ b/src/sim/card_fs_uicc.c
@@ -205,4 +205,4 @@ const struct tlv_definition ts102221_fcp_tlv_def = {
};
/* Annex E - TS 101 220 */
-static const uint8_t adf_uicc_aid[] = { 0xA0, 0x00, 0x00, 0x00, 0x87, 0x10, 0x01 };
+static const uint8_t __attribute__((__unused__)) adf_uicc_aid[] = { 0xA0, 0x00, 0x00, 0x00, 0x87, 0x10, 0x01 };