diff --git a/src/output/Interface.hxx b/src/output/Interface.hxx index 83737df5b..70e47b273 100644 --- a/src/output/Interface.hxx +++ b/src/output/Interface.hxx @@ -141,7 +141,10 @@ public: * @return false on error (output will be closed by caller), * true for continue to pause */ - virtual bool Pause() noexcept { return true; } + virtual bool Pause() noexcept { + /* fail because this method is not implemented */ + return false; + } }; #endif