Skip to content

Commit bec2e7f

Browse files
Fix in Message Interface Documentation (#127)
* fix in documentation * Update ubuntu-version for formatting --------- Co-authored-by: Rahul Kar <[email protected]>
1 parent d46de45 commit bec2e7f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
path: ./
112112

113113
formatting:
114-
runs-on: ubuntu-20.04
114+
runs-on: ubuntu-latest
115115
steps:
116116
- uses: actions/checkout@v3
117117
- name: Check formatting

docs/doxygen/pages.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ bool myMessageRecvImplementation( MQTTAgentMessageContext_t * pMsgCtx,
254254
{
255255
int status = EXIT_FAILURE;
256256
void * pReceivedPointer;
257-
if( ( pMsgCtx != NULL ) && ( pCommandToSend != NULL ) )
257+
if( ( pMsgCtx != NULL ) && ( pReceivedCommand != NULL ) )
258258
{
259259
//A function to receive data from a queue.
260260
status = Queue_Recv( pMsgCtx->queue, &pReceivedPointer, blockTimeMs );

0 commit comments

Comments
 (0)