From a321667af6f25a77e32787fe89ad306786f7b29a Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Tue, 11 Aug 2020 12:22:19 -0400 Subject: [PATCH] Clean-up: optional: change space to tabs MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau Change-Id: I6e08f4cc6198583f3dfd9dd3b02da88244e2aa9d --- src/common/optional.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/optional.h b/src/common/optional.h index 0d99fe322..faa64bf60 100644 --- a/src/common/optional.h +++ b/src/common/optional.h @@ -62,7 +62,7 @@ * wrapped optional types. It is meant to be used with PODs. */ #define LTTNG_OPTIONAL_GET(optional) \ - ({ \ + ({ \ assert((optional).is_set); \ (optional).value; \ }) -- 2.34.1