mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-10-20 18:50:44 +08:00
declaration fix for dump.c (Karl)
fixed the is_fixed stuff in table.c/data.c (Brian) autoconf (Carl)
This commit is contained in:
@@ -103,13 +103,7 @@ int name_sz;
|
||||
memset(&col,'\0', sizeof(MdbColumn));
|
||||
|
||||
col.col_type = mdb->pg_buf[cur_col];
|
||||
if (col.col_type == MDB_TEXT) {
|
||||
col.is_fixed = mdb->pg_buf[cur_col+3];
|
||||
} else if (col.col_type == MDB_MEMO) {
|
||||
col.is_fixed = 0;
|
||||
} else {
|
||||
col.is_fixed = 1;
|
||||
}
|
||||
col.is_fixed = mdb->pg_buf[cur_col+13] & 0x01 ? 1 : 0;
|
||||
col.col_size = mdb_get_int16(mdb,cur_col+16);
|
||||
/* get the name */
|
||||
name_sz = mdb->pg_buf[cur_name];
|
||||
|
Reference in New Issue
Block a user