aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Flowgraph.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Flowgraph.cpp b/src/Flowgraph.cpp
index 8e76cae..c199945 100644
--- a/src/Flowgraph.cpp
+++ b/src/Flowgraph.cpp
@@ -152,14 +152,14 @@ Flowgraph::~Flowgraph()
fprintf(stderr, "Process time:\n");
for (const auto &node : nodes) {
- fprintf(stderr, " %30s: %10u us (%2.2f %%)\n",
+ fprintf(stderr, " %30s: %10lu us (%2.2f %%)\n",
node->plugin()->name(),
- (unsigned)node->processTime(),
+ node->processTime(),
node->processTime() * 100.0 / myProcessTime);
}
- fprintf(stderr, " %30s: %10u us (100.00 %%)\n", "total",
- (unsigned)myProcessTime);
+ fprintf(stderr, " %30s: %10lu us (100.00 %%)\n", "total",
+ myProcessTime);
}
}