diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2011-07-23 10:07:25 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2011-07-23 10:07:25 +0000 |
commit | f90ddc8c22079e5f54c9c21f633c0d829f3218a2 (patch) | |
tree | 9b7e1dc7272fa1b553d5ea980973d9b22a9db7be /otherlibs/graph/image.c | |
parent | 8f5e85913493f813154079639c5c42d44fb11525 (diff) |
PR#5290: added hash functions for channels, nats, mutexes, conditions.
Also: added "custom_compare_ext_default" to all struct custom_operations:
default initialization to 0 did what we want, but explicit initialization
better documents the C sources.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@11143 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/graph/image.c')
-rw-r--r-- | otherlibs/graph/image.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/otherlibs/graph/image.c b/otherlibs/graph/image.c index 501398b35..a337de348 100644 --- a/otherlibs/graph/image.c +++ b/otherlibs/graph/image.c @@ -30,7 +30,8 @@ static struct custom_operations image_ops = { custom_compare_default, custom_hash_default, custom_serialize_default, - custom_deserialize_default + custom_deserialize_default, + custom_compare_ext_default }; #define Max_image_mem 2000000 |