Skip to content

Commit

Permalink
Merge branch 'FreeRTOS:main' into updateWordList
Browse files Browse the repository at this point in the history
  • Loading branch information
Skptak authored Jan 5, 2024
2 parents bc5c523 + ac5b9e4 commit a7dbc27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/core_mqtt.c
Original file line number Diff line number Diff line change
Expand Up @@ -2612,7 +2612,7 @@ MQTTStatus_t MQTT_InitStatefulQoS( MQTTContext_t * pContext,
LogError( ( "Arguments do not match: pOutgoingPublishRecords=%p, "
"outgoingPublishCount=%lu",
( void * ) pOutgoingPublishRecords,
outgoingPublishCount ) );
( unsigned long ) outgoingPublishCount ) );
status = MQTTBadParameter;
}

Expand All @@ -2624,7 +2624,7 @@ MQTTStatus_t MQTT_InitStatefulQoS( MQTTContext_t * pContext,
LogError( ( "Arguments do not match: pIncomingPublishRecords=%p, "
"incomingPublishCount=%lu",
( void * ) pIncomingPublishRecords,
incomingPublishCount ) );
( unsigned long ) incomingPublishCount ) );
status = MQTTBadParameter;
}
else if( pContext->appCallback == NULL )
Expand Down

0 comments on commit a7dbc27

Please sign in to comment.