diff options
author | James Laird <jlaird@hdfgroup.org> | 2007-02-20 00:23:19 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2007-02-20 00:23:19 (GMT) |
commit | 30b8b8c785a8aa28d8df6f6ec015335784a344a7 (patch) | |
tree | 63b7873647de681b38a0a8f96e8cc8129127dd03 /src/H5SMpkg.h | |
parent | 154a2ac0dcc0872269aa3abc656030fc4952abed (diff) | |
download | hdf5-30b8b8c785a8aa28d8df6f6ec015335784a344a7.zip hdf5-30b8b8c785a8aa28d8df6f6ec015335784a344a7.tar.gz hdf5-30b8b8c785a8aa28d8df6f6ec015335784a344a7.tar.bz2 |
[svn-r13340] Fixed a bug where shared messages with the same hash values could be sorted
in the wrong order.
This also makes the "unique but shareable" checkin a little easier.
Tested on smirom, kagiso, and juniper.
Diffstat (limited to 'src/H5SMpkg.h')
-rwxr-xr-x | src/H5SMpkg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5SMpkg.h b/src/H5SMpkg.h index 1cb2452..8ae28dc 100755 --- a/src/H5SMpkg.h +++ b/src/H5SMpkg.h @@ -113,7 +113,7 @@ typedef struct { H5SM_sohm_t message; /* The message to find/insert. * If the message doesn't yet have a * heap ID, the heap ID will be 0. */ - const void *encoding; /* The message encoded, or NULL */ + void *encoding; /* The message encoded, or NULL */ size_t encoding_size; /* Size of the encoding, or 0 */ H5HF_t *fheap; /* The heap for this message type, open. */ } H5SM_mesg_key_t; |