From 82cbdb1681dc4e6f11e5deafd616ffab1f3ef275 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Fri, 29 Mar 2013 17:20:49 -0400 Subject: [PATCH 1/1] add missing semicolons to typealias Signed-off-by: Mathieu Desnoyers --- common-trace-format-specification.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common-trace-format-specification.txt b/common-trace-format-specification.txt index 797dec1..2324389 100644 --- a/common-trace-format-specification.txt +++ b/common-trace-format-specification.txt @@ -388,7 +388,7 @@ Enumerations omitting the container type ": integer_type" use the "int" type (for compatibility with C99). The "int" type must be previously declared. E.g.: -typealias integer { size = 32; align = 32; signed = true } := int; +typealias integer { size = 32; align = 32; signed = true; } := int; enum { ... @@ -830,11 +830,11 @@ array is then set to 1. Types uintX_t represent an X-bit unsigned integer, as declared with either: - typealias integer { size = X; align = X; signed = false } := uintX_t; + typealias integer { size = X; align = X; signed = false; } := uintX_t; or - typealias integer { size = X; align = 1; signed = false } := uintX_t; + typealias integer { size = X; align = 1; signed = false; } := uintX_t; 6.1.1 Type 1 - Few event IDs -- 2.34.1