From 2deb2f8eebc42dd52ef8b78811c59e1b07f54f21 Mon Sep 17 00:00:00 2001 From: Ginger Bill Date: Sat, 17 Jun 2017 12:01:53 +0100 Subject: Declaration grouping uses () rather than {}; Fix some problem with compilation on *nix --- src/types.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/types.cpp') diff --git a/src/types.cpp b/src/types.cpp index 94d4cf7c8..ca74a1b77 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -2445,7 +2445,7 @@ gbString write_type_to_string(gbString str, Type *type) { break; case Type_BitFieldValue: - str = gb_string_appendc(str, gb_bprintf("(bit field value with %lld bits)", cast(int)type->BitFieldValue.bits)); + str = gb_string_appendc(str, gb_bprintf("(bit field value with %d bits)", cast(int)type->BitFieldValue.bits)); break; } -- cgit v1.2.3