aboutsummaryrefslogtreecommitdiffhomepage
path: root/checker/votour.ml
diff options
context:
space:
mode:
authorGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-08-22 14:29:29 +0000
committerGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-08-22 14:29:29 +0000
commitd475ff0d4427fc1c3859fc5d8d0cb7cc0a32a14e (patch)
treea75a8640a512b580569038dcd48ec5b35c9870e2 /checker/votour.ml
parent1f3331bd4ff9fd562d534554185db2b6c4cc9e78 (diff)
Change in vo format : digest aren't Marshalled anymore
Since digests are strings (of size 16), we just dump them now in vo files (cf. Digest.output) instead of using Marshal on them : this is cleaner and saves a few bytes. Increased VOMAGIC to clearly identify this change in the format. Please rerun ./configure after this commit. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16722 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'checker/votour.ml')
-rw-r--r--checker/votour.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/checker/votour.ml b/checker/votour.ml
index afc1c17a9..11b95c93c 100644
--- a/checker/votour.ml
+++ b/checker/votour.ml
@@ -135,7 +135,7 @@ let visit_vo f =
let ch = open_in_bin f in
let _magic = input_binary_int ch in
let lib = (input_value ch : Obj.t) in (* actually Cic.library_disk *)
- let _ = (input_value ch : Digest.t) in
+ let _ = Digest.input ch in
let tbl = (input_value ch : Obj.t) in (* actually Cic.opaque_table *)
let () = close_in ch in
let o = if !opaque then tbl else lib in