Added cast to eliminate compiler warning.
This commit is contained in:
@@ -367,7 +367,7 @@ int cov_subscribe_decode_service_request(uint8_t * apdu,
|
|||||||
} else
|
} else
|
||||||
return -1;
|
return -1;
|
||||||
/* optional parameters - if missing, means cancellation */
|
/* optional parameters - if missing, means cancellation */
|
||||||
if (len < apdu_len) {
|
if ((unsigned)len < apdu_len) {
|
||||||
/* tag 2 - issueConfirmedNotifications - optional */
|
/* tag 2 - issueConfirmedNotifications - optional */
|
||||||
if (decode_is_context_tag(&apdu[len], 2)) {
|
if (decode_is_context_tag(&apdu[len], 2)) {
|
||||||
data->cancellationRequest = false;
|
data->cancellationRequest = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user