Skip to content

Commit

Permalink
Renamed plugin SDK utils to plugin_utils to prevent filename conflict…
Browse files Browse the repository at this point in the history
…s in plugins
  • Loading branch information
apaillier-ledger committed Dec 6, 2023
1 parent 180f321 commit 0f2d026
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src_plugin_sdk/utils.c → src_plugin_sdk/plugin_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*****************************************************************************/

#include "utils.h"
#include "plugin_utils.h"

bool find_selector(uint32_t selector, const uint32_t *array, size_t size, size_t *idx) {
for (size_t i = 0; i < size; ++i) {
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions tools/build_sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ def merge_c_files(sources, nodes_to_extract):

files_to_copy = [
"main.c",
"utils.c",
"utils.h",
"plugin_utils.c",
"plugin_utils.h",
]
for file in files_to_copy:
shutil.copyfile("src_plugin_sdk/" + file,
Expand Down

0 comments on commit 0f2d026

Please sign in to comment.