Skip to content

Commit 57086ff

Browse files
EBP-348: Fix typo in code found in src/pages/tutorials/c/persistence-with-queues.md (#160)
1 parent bbf3871 commit 57086ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/tutorials/c/persistence-with-queues.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ flowEventCallback ( solClient_opaqueFlow_pt opaqueFlow_p, solClient_flow_eventCa
180180
* Create a Flow
181181
*************************************************************************/
182182
/* Flow Properties */
183-
const char *flowProps[20] = (0, };
183+
const char *flowProps[20] = {0, };
184184

185185
/* Flow */
186186
solClient_opaqueFlow_pt flow_p;
@@ -258,4 +258,4 @@ Exiting.
258258
```
259259
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.
260260

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

0 commit comments

Comments
 (0)