From: Gereon Kremer Date: Fri, 4 Jun 2021 13:17:57 +0000 (+0200) Subject: Add missing dereference (#6684) X-Git-Tag: cvc5-1.0.0~1642 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2e001991f926c307ff0f812dafca4d9dc6e4d831;p=cvc5.git Add missing dereference (#6684) --- diff --git a/src/main/driver_unified.cpp b/src/main/driver_unified.cpp index 79c98924a..4f82ac1ae 100644 --- a/src/main/driver_unified.cpp +++ b/src/main/driver_unified.cpp @@ -499,7 +499,7 @@ int runCvc5(int argc, char* argv[], Options& opts) #ifdef CVC5_COMPETITION_MODE if (cvc5::options::getOut(opts) != nullptr) { - cvc5::options::getOut(opts) << std::flush; + *cvc5::options::getOut(opts) << std::flush; } // exit, don't return (don't want destructors to run) // _exit() from unistd.h doesn't run global destructors