Skip to content
Snippets Groups Projects
Commit d812584d authored by Tristan Matthews's avatar Tristan Matthews Committed by Guillaume Roguez
Browse files

plugin_manager: fix clang warnings

Fixes warning: "use of GNU old-style field designator extension"

Refs #58171

Change-Id: If6a3a8d22f959b5fe6307e3eb2ed98171fd75bfa
parent 50e65bdd
Branches
Tags android/release_432
No related merge requests found
...@@ -197,8 +197,8 @@ PluginManager::createObject(const std::string& type) ...@@ -197,8 +197,8 @@ PluginManager::createObject(const std::string& type)
return {nullptr, nullptr}; return {nullptr, nullptr};
RING_PluginObjectParams op = { RING_PluginObjectParams op = {
pluginApi : &pluginApi_, .pluginApi = &pluginApi_,
type : type.c_str(), .type = type.c_str(),
}; };
// Try to find an exact match // Try to find an exact match
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment