From 3524fd7d2434e04c001134fe136a6ce441addb15 Mon Sep 17 00:00:00 2001 From: Julian Oes Date: Tue, 5 Jul 2016 17:40:37 +0200 Subject: [PATCH] ekf2: don't ignore function argument (#4990) --- src/modules/ekf2/ekf2_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/ekf2/ekf2_main.cpp b/src/modules/ekf2/ekf2_main.cpp index a02e1ceeb3..e1f746e58d 100644 --- a/src/modules/ekf2/ekf2_main.cpp +++ b/src/modules/ekf2/ekf2_main.cpp @@ -116,7 +116,7 @@ public: */ int start(); - void set_replay_mode(bool replay) {_replay_mode = true;}; + void set_replay_mode(bool replay) {_replay_mode = replay;}; static void task_main_trampoline(int argc, char *argv[]);