From 8684abc83fb68af80191e7d32f1054db055aafb8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Mon, 2 May 2016 22:59:33 -0400 Subject: [PATCH] Clean-up: Missing space after cast operator MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- formats/ctf/ir/fields.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/formats/ctf/ir/fields.c b/formats/ctf/ir/fields.c index 58f69fd4..123c3153 100644 --- a/formats/ctf/ir/fields.c +++ b/formats/ctf/ir/fields.c @@ -994,7 +994,7 @@ int bt_ctf_field_unsigned_integer_set_value(struct bt_ctf_field *field, } size = integer_type->declaration.len; - max_value = (size == 64) ? UINT64_MAX : ((uint64_t)1 << size) - 1; + max_value = (size == 64) ? UINT64_MAX : ((uint64_t) 1 << size) - 1; if (value > max_value) { ret = -1; goto end; -- 2.34.1