From 26213f1031e364bd8496e5317fba8140adaba357 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Thu, 1 Aug 2019 22:14:09 +0200 Subject: [PATCH] Fix cbuf documentation --- app/src/cbuf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/cbuf.h b/app/src/cbuf.h index 9777d9f4..35b39b7b 100644 --- a/app/src/cbuf.h +++ b/app/src/cbuf.h @@ -6,7 +6,7 @@ #include // To define a circular buffer type of 20 ints: -// typedef CBUF(int, 20) my_cbuf_t; +// struct cbuf_int CBUF(int, 20); // // data has length CAP + 1 to distinguish empty vs full. #define CBUF(TYPE, CAP) { \