diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/system.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.ml b/lib/system.ml index 35584bf89b..eb2305112a 100644 --- a/lib/system.ml +++ b/lib/system.ml @@ -140,7 +140,7 @@ let try_remove f = with _ -> msgnl (str"Warning: " ++ str"Could not remove file " ++ str f ++ str" which is corrupted!" ) -let marshal_out ch v = Marshal.to_channel ch v [] +let marshal_out ch v = Marshal.to_channel ch v [Marshal.Closures] let marshal_in ch = try Marshal.from_channel ch with End_of_file -> error "corrupted file: reached end of file" |
