diff options
author | 2009-03-05 07:35:24 +0000 | |
---|---|---|
committer | 2009-03-05 07:35:24 +0000 | |
commit | e8c09b35f6217060b4bd3f5f437585270b2faa3f (patch) | |
tree | 9ac04f6b86bacf00d191dfdff5a8a7316dc367a4 /src/lib/util/harddisk.c | |
parent | 6a0e1fcfe0f298a5ed87c044ece43aadd1429a85 (diff) |
Added flags to the metadata entries, encoded in the top bit. Right now
it is a no-op, but eventually will be used to indicate which bits of
metadata are included in the overall checksum.
Diffstat (limited to 'src/lib/util/harddisk.c')
-rw-r--r-- | src/lib/util/harddisk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/harddisk.c b/src/lib/util/harddisk.c index 97e18a99929..ed18465b9fc 100644 --- a/src/lib/util/harddisk.c +++ b/src/lib/util/harddisk.c @@ -49,7 +49,7 @@ hard_disk_file *hard_disk_open(chd_file *chd) return NULL; /* read the hard disk metadata */ - err = chd_get_metadata(chd, HARD_DISK_METADATA_TAG, 0, metadata, sizeof(metadata), NULL, NULL); + err = chd_get_metadata(chd, HARD_DISK_METADATA_TAG, 0, metadata, sizeof(metadata), NULL, NULL, NULL); if (err != CHDERR_NONE) return NULL; |