Skip to content

Commit

Permalink
update precondition on provisioning
Browse files Browse the repository at this point in the history
  • Loading branch information
danewalton committed Mar 9, 2021
1 parent c2255a2 commit b3d1f67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/src/azure/iot/az_iot_provisioning_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -518,8 +518,8 @@ AZ_NODISCARD az_result az_iot_provisioning_client_parse_received_topic_and_paylo

_az_PRECONDITION_NOT_NULL(client);
_az_PRECONDITION_VALID_SPAN(client->_internal.global_device_endpoint, 1, false);
_az_PRECONDITION_VALID_SPAN(received_topic, 0, false);
_az_PRECONDITION_VALID_SPAN(received_payload, 0, false);
_az_PRECONDITION_VALID_SPAN(received_topic, 1, false);
_az_PRECONDITION_VALID_SPAN(received_payload, 1, false);
_az_PRECONDITION_NOT_NULL(out_response);

az_span str_dps_registrations_res = _az_iot_provisioning_get_dps_registrations_res();
Expand Down

0 comments on commit b3d1f67

Please sign in to comment.