From df6f2c372602981398151cd939c214a1f269178c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 23 Aug 2023 10:46:33 -0400 Subject: Fix build with GCC 13 --- src/Configuration.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/Configuration.cpp b/src/Configuration.cpp index 67a91dae..7d3d9c40 100644 --- a/src/Configuration.cpp +++ b/src/Configuration.cpp @@ -290,8 +290,8 @@ Configuration::save(URIMap& uri_map, } // Attempt to open file for writing - const std::unique_ptr file{fopen(path.c_str(), "w"), - &fclose}; + const std::unique_ptr file{ + fopen(path.c_str(), "w"), &fclose}; if (!file) { throw FileError(fmt("Failed to open file %1% (%2%)", path, strerror(errno))); -- cgit v1.2.1