fixed the assertion failure that arose when a built-in global variable is set with -v.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
changed multiple open functions to accept hawk_errinfo_t* instead of hawk_errnum_t*
This commit is contained in:
@ -462,7 +462,7 @@ HAWK_EXPORT hawk_sed_t* hawk_sed_open (
|
||||
hawk_mmgr_t* mmgr, /**< memory manager */
|
||||
hawk_oow_t xtnsize, /**< extension size in bytes */
|
||||
hawk_cmgr_t* cmgr,
|
||||
hawk_errnum_t* errnum
|
||||
hawk_errinf_t* errinf
|
||||
);
|
||||
|
||||
/**
|
||||
@ -791,7 +791,7 @@ HAWK_EXPORT void hawk_sed_freemem (
|
||||
*/
|
||||
HAWK_EXPORT hawk_sed_t* hawk_sed_openstd (
|
||||
hawk_oow_t xtnsize, /**< extension size in bytes */
|
||||
hawk_errnum_t* errnum
|
||||
hawk_errinf_t* errinf
|
||||
);
|
||||
|
||||
/**
|
||||
@ -804,7 +804,7 @@ HAWK_EXPORT hawk_sed_t* hawk_sed_openstdwithmmgr (
|
||||
hawk_mmgr_t* mmgr, /**< memory manager */
|
||||
hawk_oow_t xtnsize, /**< extension size in bytes */
|
||||
hawk_cmgr_t* cmgr,
|
||||
hawk_errnum_t* errnum
|
||||
hawk_errinf_t* errinf
|
||||
);
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user