aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Bitfields.ml
diff options
context:
space:
mode:
Diffstat (limited to 'cparser/Bitfields.ml')
-rw-r--r--cparser/Bitfields.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/cparser/Bitfields.ml b/cparser/Bitfields.ml
index 35da5d4e..e0dccbd2 100644
--- a/cparser/Bitfields.ml
+++ b/cparser/Bitfields.ml
@@ -66,7 +66,7 @@ let is_signed_enum_bitfield env sid fld eid n =
else if List.for_all (fun (_, v, _) -> int_representable v n true) info.Env.ei_members
then true
else begin
- Cerrors.warning Cutil.no_loc Cerrors.Unnamed
+ Diagnostics.warning Diagnostics.no_loc Diagnostics.Unnamed
"not all values of type 'enum %s' can be represented in bit-field '%s' of struct '%s' (%d bits are not enough)"
eid.C.name fld sid.C.name n;
false