From 50fb0b5eae1dbf9745290fa9917e3e1fc5a4808d Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Fri, 7 May 2021 08:52:49 -0700 Subject: [PATCH] Fix formatting --- include/fmt/format.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index 241aa902..1378226c 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -2704,8 +2704,8 @@ FMT_API std::system_error vsystem_error(int error_code, string_view format_str, // This throws std::system_error with the description // cannot open file 'madeup': No such file or directory // or similar (system message may vary). - const char *filename = "madeup"; - std::FILE *file = std::fopen(filename, "r"); + const char* filename = "madeup"; + std::FILE* file = std::fopen(filename, "r"); if (!file) throw fmt::system_error(errno, "cannot open file '{}'", filename); \endrst