From bc38896a2ba2b6c35a45aff3ca2acae11bc51dd2 Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Sun, 21 May 2017 23:18:52 -0400 Subject: [PATCH] Minor progress callback tweak --- driver/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/main.cpp b/driver/main.cpp index 76a4c93..c9b1e11 100644 --- a/driver/main.cpp +++ b/driver/main.cpp @@ -60,7 +60,7 @@ int main(int argc, char* argv[]) auto progFunc = [&](float prog, const nod::SystemString& name, size_t bytes) { - nod::Printf(_S("\r ")); + nod::Printf(_S("\r ")); if (bytes != -1) nod::Printf(_S("\r%g%% %s %" PRISize " B"), prog * 100.f, name.c_str(), bytes); else