changed the return type of xma dumper to void
This commit is contained in:
parent
dacb0cf293
commit
3a5a268bd7
@ -1056,7 +1056,6 @@ static int xma_dumper_without_hawk (void* ctx, const hawk_bch_t* fmt, ...)
|
|||||||
va_start (ap, fmt);
|
va_start (ap, fmt);
|
||||||
vfprintf (stderr, fmt, ap);
|
vfprintf (stderr, fmt, ap);
|
||||||
va_end (ap);
|
va_end (ap);
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(HAWK_BUILD_DEBUG)
|
#if defined(HAWK_BUILD_DEBUG)
|
||||||
|
@ -123,8 +123,8 @@ struct hawk_xma_t
|
|||||||
* The hawk_xma_dumper_t type defines a printf-like output function
|
* The hawk_xma_dumper_t type defines a printf-like output function
|
||||||
* for hawk_xma_dump().
|
* for hawk_xma_dump().
|
||||||
*/
|
*/
|
||||||
typedef int (*hawk_xma_dumper_t) (
|
typedef void (*hawk_xma_dumper_t) (
|
||||||
void* ctx,
|
void* ctx,
|
||||||
const hawk_bch_t* fmt,
|
const hawk_bch_t* fmt,
|
||||||
...
|
...
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user