aboutsummaryrefslogtreecommitdiffhomepage
path: root/checker/modops.ml
diff options
context:
space:
mode:
authorGravatar Pierre Letouzey <pierre.letouzey@inria.fr>2016-05-31 09:09:56 +0200
committerGravatar Pierre Letouzey <pierre.letouzey@inria.fr>2016-05-31 09:11:27 +0200
commitb994e3195d296e9d12c058127ced381976c3a49e (patch)
tree8648a92470d27671db9d5e40159a1aec68e8dc9c /checker/modops.ml
parent7d2ad6ac66abb97819ffbc5ad58c862a84e28775 (diff)
Checker: avoid using obsolete names from Names
Diffstat (limited to 'checker/modops.ml')
-rw-r--r--checker/modops.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/checker/modops.ml b/checker/modops.ml
index 9f4375262..442f999bb 100644
--- a/checker/modops.ml
+++ b/checker/modops.ml
@@ -28,7 +28,7 @@ let error_not_match l _ =
let error_no_such_label l = error ("No such label "^Label.to_string l)
let error_no_such_label_sub l l1 =
- let l1 = string_of_mp l1 in
+ let l1 = ModPath.to_string l1 in
error ("The field "^
Label.to_string l^" is missing in "^l1^".")