From 394e987350cedeaab4ab45c0103b951e96ececd0 Mon Sep 17 00:00:00 2001 From: Nicolas Lesser Date: Thu, 6 Dec 2018 14:44:06 +0100 Subject: [PATCH] Fix typo. --- include/fmt/color.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/color.h b/include/fmt/color.h index 7f5e1e1b..4bf60a5a 100644 --- a/include/fmt/color.h +++ b/include/fmt/color.h @@ -453,7 +453,7 @@ print(const text_style &tf, const String &format_str, const Args & ... args) { typedef typename internal::char_t::type char_t; typedef typename buffer_context::type context_t; format_arg_store as{args...}; - vprint_text_style(tf, format_str, basic_format_args(as)); + vprint(tf, format_str, basic_format_args(as)); } #endif