Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: sht15_remote_monitoring RobotArmDemo iothub_client_sample_amqp iothub_client_sample_amqp ... more
Revision 57:56ac1346c70d, committed 2018-10-04
- Comitter:
- AzureIoTClient
- Date:
- Thu Oct 04 09:14:47 2018 -0700
- Parent:
- 56:8704100b3b54
- Commit message:
- 1.2.10
Changed in this revision
uamqp_messaging.c | Show annotated file Show diff for this revision Revisions of this file |
--- a/uamqp_messaging.c Tue Sep 11 11:11:47 2018 -0700 +++ b/uamqp_messaging.c Thu Oct 04 09:14:47 2018 -0700 @@ -729,7 +729,7 @@ LogError("Failed to get value of uAMQP message 'message-id' property (UUID)"); string_value = NULL; } - else if ((string_value = UUID_to_string((UUID_T*)uuid_value)) == NULL) + else if ((string_value = UUID_to_string((const UUID_T*)uuid_value)) == NULL) { // Codes_SRS_UAMQP_MESSAGING_09_015: [If message-id fails to be obtained, message_create_IoTHubMessage_from_uamqp_message() shall fail and return immediately.] LogError("Failed to get the string representation of 'message-id' UUID"); @@ -848,7 +848,7 @@ LogError("Failed to get value of uAMQP message 'correlation-id' property (UUID)"); string_value = NULL; } - else if ((string_value = UUID_to_string((UUID_T*)uuid_value)) == NULL) + else if ((string_value = UUID_to_string((const UUID_T*)uuid_value)) == NULL) { // Codes_SRS_UAMQP_MESSAGING_09_023: [If correlation-id fails to be obtained, message_create_IoTHubMessage_from_uamqp_message() shall fail and return immediately.] LogError("Failed to get the string representation of 'correlation-id' UUID");