aboutsummaryrefslogtreecommitdiff
path: root/src/modules/systemlib/perf_counter.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/systemlib/perf_counter.c')
-rw-r--r--src/modules/systemlib/perf_counter.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/modules/systemlib/perf_counter.c b/src/modules/systemlib/perf_counter.c
index 4d62db0ee..950577f00 100644
--- a/src/modules/systemlib/perf_counter.c
+++ b/src/modules/systemlib/perf_counter.c
@@ -272,11 +272,14 @@ perf_end(perf_counter_t handle)
}
}
+#include <systemlib/err.h>
+
void
perf_set(perf_counter_t handle, int64_t elapsed)
{
- if (handle == NULL)
+ if (handle == NULL) {
return;
+ }
switch (handle->type) {
case PC_ELAPSED: {