From: Jérémie Galarneau Date: Tue, 11 Aug 2020 16:22:19 +0000 (-0400) Subject: Clean-up: optional: change space to tabs X-Git-Tag: v2.13.0-rc1~542 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=a321667af6f25a77e32787fe89ad306786f7b29a;hp=3da864a94ccc39239fea82c4803b58b6b56a1003 Clean-up: optional: change space to tabs Signed-off-by: Jérémie Galarneau Change-Id: I6e08f4cc6198583f3dfd9dd3b02da88244e2aa9d --- 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; \ })