ftypes: Bugfix missing return statement

This commit is contained in:
João Valverde 2021-11-10 12:43:11 +00:00
parent 4c800f2dba
commit 084619088c
1 changed files with 1 additions and 0 deletions

View File

@ -660,6 +660,7 @@ float_ieee_11073_val_to_repr(const fvalue_t *fv, ftrepr_t rtype _U_, int field_d
(void) g_strlcpy(buf, "-INFINITY", size);
break;
}
return;
}
exponent = fv->value.float_ieee_11073 >> 24;