fixup warnings

Change-Id: I73262ebf04640782859c5fa43b9172de3c788e3d
This commit is contained in:
Harald Welte 2019-03-31 15:51:13 +02:00
parent 13d0f8c3d3
commit 3f09f634e0
1 changed files with 3 additions and 3 deletions

View File

@ -97,7 +97,7 @@ static void *g_tall_ctx;
void __thread *talloc_asn1_ctx; void __thread *talloc_asn1_ctx;
int asn_debug; int asn_debug;
static int gsmtap_send_sim(const uint8_t *apdu, unsigned int len) __attribute__((unused)) static int gsmtap_send_sim(const uint8_t *apdu, unsigned int len)
{ {
struct gsmtap_hdr *gh; struct gsmtap_hdr *gh;
unsigned int gross_len = len + sizeof(*gh); unsigned int gross_len = len + sizeof(*gh);
@ -270,7 +270,7 @@ static int cardem_request_sw_tx(struct cardem_inst *ci, const uint8_t *sw)
} }
// FIXME check if the ATR actually includes a checksum // FIXME check if the ATR actually includes a checksum
static void atr_update_csum(uint8_t *atr, unsigned int atr_len) __attribute__((unused)) static void atr_update_csum(uint8_t *atr, unsigned int atr_len)
{ {
uint8_t csum = 0; uint8_t csum = 0;
int i; int i;
@ -394,7 +394,7 @@ static int process_do_pts(struct cardem_inst *ci, uint8_t *buf, int len)
} }
/*! \brief Process a ERROR indication message from the SIMtrace2 */ /*! \brief Process a ERROR indication message from the SIMtrace2 */
static int process_do_error(struct cardem_inst *ci, uint8_t *buf, int len) __attribute__((unused)) static int process_do_error(struct cardem_inst *ci, uint8_t *buf, int len)
{ {
struct cardemu_usb_msg_error *err; struct cardemu_usb_msg_error *err;
err = (struct cardemu_usb_msg_error *) buf; err = (struct cardemu_usb_msg_error *) buf;