From 06f987da5845d641106420e2de9e5bf6dba55f7b Mon Sep 17 00:00:00 2001 From: Bernhard Schommer Date: Tue, 31 Jan 2017 13:55:33 +0100 Subject: Improve indentation. --- cparser/Cutil.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cparser/Cutil.ml') diff --git a/cparser/Cutil.ml b/cparser/Cutil.ml index f55c1703..20cdc038 100644 --- a/cparser/Cutil.ml +++ b/cparser/Cutil.ml @@ -545,7 +545,7 @@ let offsetof env ty field = | TStruct (id,_) -> let str = Env.find_struct env id in let pre = sub [] field.fld_name str.ci_members in - begin match sizeof_struct env pre ,alignof env field.fld_typ with + begin match sizeof_struct env pre, alignof env field.fld_typ with | Some s, Some a -> align s a | _ -> assert false end -- cgit