Apply patch from chips44 to fix extracting of single floats.

This commit is contained in:
trewitt
2002-08-12 15:00:38 +00:00
parent 813ed0918a
commit 336d35f91a
2 changed files with 2 additions and 1 deletions

View File

@@ -516,7 +516,7 @@ int i;
return text;
break;
case MDB_FLOAT:
sprintf(text,"%f",mdb_get_double(mdb, start));
sprintf(text,"%f",mdb_get_single(mdb, start));
return text;
break;
case MDB_DOUBLE: