diff options
| author | Josh Ferrell <josh@vector35.com> | 2024-08-20 15:22:09 -0400 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2024-08-20 15:22:09 -0400 |
| commit | a48cc7e466cbbed8abf465d30fb03d867ce07185 (patch) | |
| tree | e08d7476c986c31e8d64a01ed3eb748635636c0e /debuginfo.cpp | |
| parent | 46b26cf9f4a8eee8e94f86532220e61120c2a54d (diff) | |
Update progress functions to use BNProgressFunction typedef
Diffstat (limited to 'debuginfo.cpp')
| -rw-r--r-- | debuginfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debuginfo.cpp b/debuginfo.cpp index 9a4a2c9e..ce8ab495 100644 --- a/debuginfo.cpp +++ b/debuginfo.cpp @@ -452,7 +452,7 @@ bool CustomDebugInfoParser::IsValidCallback(void* ctxt, BNBinaryView* view) bool CustomDebugInfoParser::ParseCallback(void* ctxt, BNDebugInfo* debugInfo, BNBinaryView* view, - BNBinaryView* debugFile, bool (*progress)(void*, size_t, size_t), void* progressCtxt) + BNBinaryView* debugFile, BNProgressFunction progress, void* progressCtxt) { CustomDebugInfoParser* parser = (CustomDebugInfoParser*)ctxt; return parser->ParseInfo(new DebugInfo(debugInfo), new BinaryView(view), new BinaryView(debugFile), |
