forked from Imagelibrary/binutils-gdb
Fix make_cleanup_dtor signature to match declaration
The definition does not use the typedef for the dtor function pointer type that the declaration uses. It's a cosmetic-only change. ChangeLog: * common/cleanups.c (make_cleanup_dtor): Use typedef for dtor type.
This commit is contained in:
@@ -124,7 +124,7 @@ make_cleanup (make_cleanup_ftype *function, void *arg)
|
||||
|
||||
struct cleanup *
|
||||
make_cleanup_dtor (make_cleanup_ftype *function, void *arg,
|
||||
void (*dtor) (void *))
|
||||
make_cleanup_dtor_ftype *dtor)
|
||||
{
|
||||
return make_my_cleanup2 (&cleanup_chain,
|
||||
function, arg, dtor);
|
||||
|
||||
Reference in New Issue
Block a user