From a0aafdf61b7abaca01fd6a44375a4dd7a5350aa4 Mon Sep 17 00:00:00 2001 From: john spurling Date: Sun, 4 Feb 2018 16:10:42 -0800 Subject: [PATCH] Add missing semicolon to ring array example code in documentation. (#149) --- docs/modules/cc_ring_array.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/cc_ring_array.rst b/docs/modules/cc_ring_array.rst index 49791ec8c..a02a0e509 100644 --- a/docs/modules/cc_ring_array.rst +++ b/docs/modules/cc_ring_array.rst @@ -92,7 +92,7 @@ Hello World! with ccommon ``ring_array``: if (status != CC_OK) { printf("Could not pop entire message!"); - exit(1) + exit(1); } printf("%c", c);