Skip to content

Commit 92aacda

Browse files
committed
util, refactor: Drop explicit conversion to fs::path
Removes unhelpful noise/verbosity. See: #24306 (comment)
1 parent a6aaf62 commit 92aacda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/system.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ bool ArgsManager::InitSettings(std::string& error)
517517

518518
bool ArgsManager::GetSettingsPath(fs::path* filepath, bool temp) const
519519
{
520-
fs::path settings = GetPathArg("-settings", fs::path{BITCOIN_SETTINGS_FILENAME});
520+
fs::path settings = GetPathArg("-settings", BITCOIN_SETTINGS_FILENAME);
521521
if (settings.empty()) {
522522
return false;
523523
}

0 commit comments

Comments
 (0)