summaryrefslogtreecommitdiff
path: root/update.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'update.cpp')
-rw-r--r--update.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/update.cpp b/update.cpp
index affd9a99..de0bc1b4 100644
--- a/update.cpp
+++ b/update.cpp
@@ -27,9 +27,9 @@ using namespace std;
namespace BinaryNinja {
struct UpdateProgress
{
- function<bool(uint64_t progress, uint64_t total)> func;
+ function<bool(size_t progress, size_t total)> func;
- static bool UpdateCallback(void* ctxt, uint64_t progress, uint64_t total)
+ static bool UpdateCallback(void* ctxt, size_t progress, size_t total)
{
UpdateProgress* self = (UpdateProgress*)ctxt;
return self->func(progress, total);