Clean-up: Missing space after cast operator
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 3 May 2016 02:59:33 +0000 (22:59 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 3 May 2016 02:59:33 +0000 (22:59 -0400)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
formats/ctf/ir/fields.c

index 58f69fd43cbd5e674412e05c7a4f11afe706834f..123c3153a60cef91e8b716ba5813b0669b4f06bc 100644 (file)
@@ -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;
This page took 0.025392 seconds and 4 git commands to generate.