crashreporter: avoid clang warning

This commit is contained in:
Vaxry 2024-12-08 18:52:34 +00:00
parent c106f454c1
commit 0a27af8cd1

View file

@ -122,9 +122,9 @@ void NCrashReporter::createAndSaveCrash(int sig) {
if (g_pPluginSystem && g_pPluginSystem->pluginCount() > 0) { if (g_pPluginSystem && g_pPluginSystem->pluginCount() > 0) {
finalCrashReport += "Hyprland seems to be running with plugins. This crash might not be Hyprland's fault.\nPlugins:\n"; finalCrashReport += "Hyprland seems to be running with plugins. This crash might not be Hyprland's fault.\nPlugins:\n";
size_t count = g_pPluginSystem->pluginCount(); const size_t count = g_pPluginSystem->pluginCount();
CPlugin* plugins[count] = {nullptr}; std::vector<CPlugin*> plugins(count);
g_pPluginSystem->sigGetPlugins(plugins, count); g_pPluginSystem->sigGetPlugins(plugins.data(), count);
for (size_t i = 0; i < count; i++) { for (size_t i = 0; i < count; i++) {
auto p = plugins[i]; auto p = plugins[i];