From 49ee4eb3f463fc8c04d92c961807ba336b1e5bce Mon Sep 17 00:00:00 2001 From: Ineiev Date: Fri, 25 Apr 2025 10:27:09 +0000 Subject: [PATCH] * c.texi (break Statement): Fix a typo (missing '*'). --- c.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c.texi b/c.texi index a742fc4..599b207 100644 --- a/c.texi +++ b/c.texi @@ -8268,7 +8268,7 @@ innermost loop containing it. @example struct list_if_tuples @{ - struct list_if_tuples next; + struct list_if_tuples *next; int length; data *contents; @};