Replace a few mdb_pg_get_int's with mdb_get_int's

This commit is contained in:
whydoubt
2005-03-22 13:06:57 +00:00
parent a2c849ca8c
commit 30b165938b
5 changed files with 31 additions and 26 deletions

View File

@@ -150,7 +150,7 @@ MdbHandle *mdb_open(const char *filename, MdbFileFlags flags)
mdb_close(mdb);
return NULL;
}
mdb->f->jet_version = mdb_pg_get_int32(mdb, 0x14);
mdb->f->jet_version = mdb_get_int32(mdb->pg_buf, 0x14);
if (IS_JET4(mdb)) {
mdb->fmt = &MdbJet4Constants;
} else if (IS_JET3(mdb)) {