Skip to content

Commit

Permalink
Remove 0xb character from comments (#880)
Browse files Browse the repository at this point in the history
There was a 0xb character checked into code, which was throwing off certain debuggers (windbg) in matching up lines.
  • Loading branch information
jspaith authored Mar 6, 2019
1 parent 492f987 commit 1078a7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iothub_client/src/iothubtransport_mqtt_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@ static STRING_HANDLE addPropertiesTouMqttMessage(IOTHUB_MESSAGE_HANDLE iothub_me
result = NULL;
}

// Codes_SRS_IOTHUB_TRANSPORT_MQTT_COMMON_31_060: [ `IoTHubTransport_MQTT_Common_DoWork` shall check for the OutputName property and if found add the alue as a system property in the format of $.on=<value> ]
// Codes_SRS_IOTHUB_TRANSPORT_MQTT_COMMON_31_060: [ `IoTHubTransport_MQTT_Common_DoWork` shall check for the OutputName property and if found add the value as a system property in the format of $.on=<value> ]
if (result != NULL)
{
const char* output_name = IoTHubMessage_GetOutputName(iothub_message_handle);
Expand Down

0 comments on commit 1078a7b

Please sign in to comment.