ftypes: Fix a macro argument

This commit is contained in:
João Valverde 2022-04-12 09:41:58 +01:00
parent 096947337e
commit 03e41d4950
1 changed files with 1 additions and 1 deletions

View File

@ -291,7 +291,7 @@ WS_DLL_PUBLIC char *
fvalue_to_string_repr(wmem_allocator_t *scope, const fvalue_t *fv, ftrepr_t rtype, int field_display);
#define fvalue_to_debug_repr(scope, fv) \
fvalue_to_string_repr(NULL, fv, FTREPR_DFILTER, 0)
fvalue_to_string_repr(scope, fv, FTREPR_DFILTER, 0)
WS_DLL_PUBLIC ftenum_t
fvalue_type_ftenum(fvalue_t *fv);