aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cparser/Cutil.ml2
1 files changed, 1 insertions, 1 deletions
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