summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/corefile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/util/corefile.h')
-rw-r--r--src/lib/util/corefile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/corefile.h b/src/lib/util/corefile.h
index 6a7d14ea439..315645d4e2c 100644
--- a/src/lib/util/corefile.h
+++ b/src/lib/util/corefile.h
@@ -87,7 +87,7 @@ public:
virtual int puts(std::string_view s) = 0;
// printf-style text write to a file
- virtual int vprintf(util::format_argument_pack<std::ostream> const &args) = 0;
+ virtual int vprintf(util::format_argument_pack<char> const &args) = 0;
template <typename Format, typename... Params> int printf(Format &&fmt, Params &&...args)
{
return vprintf(util::make_format_argument_pack(std::forward<Format>(fmt), std::forward<Params>(args)...));