mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-05 04:17:06 +08:00
Fix export of byte field values >127
Regression introduced in v0.9.3-beta1. Fixes #350
This commit is contained in:
parent
b0a1f00113
commit
6de0227a36
@ -1009,7 +1009,7 @@ char *mdb_col_to_string(MdbHandle *mdb, void *buf, int start, int datatype, int
|
||||
|
||||
switch (datatype) {
|
||||
case MDB_BYTE:
|
||||
text = g_strdup_printf("%hhd", mdb_get_byte(buf, start));
|
||||
text = g_strdup_printf("%hhu", mdb_get_byte(buf, start));
|
||||
break;
|
||||
case MDB_INT:
|
||||
text = g_strdup_printf("%hd",
|
||||
|
Loading…
Reference in New Issue
Block a user