From df5d7ed4cdd307e0f1f1f079957adea64ae1c9bc Mon Sep 17 00:00:00 2001 From: rusefillc <48498823+rusefillc@users.noreply.github.com> Date: Fri, 17 Feb 2023 14:42:35 -0500 Subject: [PATCH] ts: fix compilation warning (#206) Co-authored-by: Andrey Gusakov --- firmware/console/binary/tunerstudio_io.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/console/binary/tunerstudio_io.h b/firmware/console/binary/tunerstudio_io.h index 4b7f046..ec335f7 100644 --- a/firmware/console/binary/tunerstudio_io.h +++ b/firmware/console/binary/tunerstudio_io.h @@ -49,7 +49,7 @@ public: virtual void flush() { } virtual bool isConfigured() const { return true; } virtual bool isReady() const { return true; } - virtual int reStart() { } + virtual int reStart() { return 0; } virtual void stop() { } // Base functions that use the above virtual implementation