Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/pages/tutorials/c/persistence-with-queues.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ flowEventCallback ( solClient_opaqueFlow_pt opaqueFlow_p, solClient_flow_eventCa
* Create a Flow
*************************************************************************/
/* Flow Properties */
const char *flowProps[20] = (0, };
const char *flowProps[20] = {0, };

/* Flow */
solClient_opaqueFlow_pt flow_p;
Expand Down Expand Up @@ -258,4 +258,4 @@ Exiting.
```
You can also run `QueuePublisher` a few more times to let the queue to build up a little before running `QueueSubscriber`. The `QueueSubscriber` will consume all queued messages and display them.

You have now successfully connected a client, sent persistent messages to a queue and received and acknowledged them.
You have now successfully connected a client, sent persistent messages to a queue and received and acknowledged them.
Loading