aboutsummaryrefslogtreecommitdiffstats
path: root/cparser
diff options
context:
space:
mode:
Diffstat (limited to 'cparser')
-rw-r--r--cparser/Elab.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/cparser/Elab.ml b/cparser/Elab.ml
index 0d9d9d09..4d2a33b7 100644
--- a/cparser/Elab.ml
+++ b/cparser/Elab.ml
@@ -2274,7 +2274,7 @@ let enter_decdefs local loc env sto dl =
let enter_decdef (decls, env) (s, ty, init) =
let isfun = is_function_type env ty in
if sto = Storage_extern && init <> NO_INIT then
- error loc "'extern' declaration variable has an initializer";
+ error loc "'extern' declaration variable has an initializer";
if local && isfun then begin
match sto with
| Storage_static ->