Skip to content

Commit

Permalink
hyprpm: Fix crashes due to misplaced fmt argument(s) (#8140)
Browse files Browse the repository at this point in the history
  • Loading branch information
zakk4223 authored Oct 16, 2024
1 parent 86e9f69 commit 09581d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hyprpm/src/core/PluginManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ bool CPluginManager::updatePlugins(bool forceUpdateAll) {
" This likely means that the plugin is either outdated, not yet available for your version, or broken.\n"
"If you are on -git, update first.\n"
"Try re-running with -v to see more verbose output.",
failureString("Plugin {} failed to build."));
failureString("Plugin {} failed to build.", p.name));
p.failed = true;
continue;
}
Expand Down Expand Up @@ -839,7 +839,7 @@ ePluginLoadStateReturn CPluginManager::ensurePluginsLoadState() {
continue;

loadUnloadPlugin(HYPRPMPATH + repoForName(p.name) + "/" + p.filename, true);
std::println("{}", successString("Loaded {}"), p.name);
std::println("{}", successString("Loaded {}", p.name));
}
}

Expand Down

0 comments on commit 09581d3

Please sign in to comment.