From 4a27ac909430e949c4ee0c155fd90ecd5709fda7 Mon Sep 17 00:00:00 2001 From: Michael Schmidt Date: Tue, 30 Aug 2016 10:36:30 +0200 Subject: bug 18004, fix some typos/grammar --- cfrontend/C2C.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cfrontend/C2C.ml') diff --git a/cfrontend/C2C.ml b/cfrontend/C2C.ml index 4049907e..637c29ec 100644 --- a/cfrontend/C2C.ml +++ b/cfrontend/C2C.ml @@ -717,7 +717,7 @@ let rec convertExpr env e = let e2' = convertExpr env e2 in if Cutil.is_composite_type env e1.etyp && List.mem AVolatile (Cutil.attributes_of_type env e1.etyp) then - warning Cerrors.Unnamed "assignment to a lvalue of volatile composite type"; + warning Cerrors.Unnamed "assignment to an lvalue of volatile composite type"; ewrap (Ctyping.eassign e1' e2') | C.EBinop((C.Oadd_assign|C.Osub_assign|C.Omul_assign|C.Odiv_assign| C.Omod_assign|C.Oand_assign|C.Oor_assign|C.Oxor_assign| -- cgit