Skip to content

Commit dc9e014

Browse files
authored
Merge pull request #507 from ostis-ai/fix/build/collect_extensions_function
[memory][extensions] Fix type for shutdown_func variable in _sc_ext_collect_extensions_from_directory function
2 parents 0069d6f + 01e6282 commit dc9e014

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171

7272
- name: Install compilers (macOS)
7373
if: runner.os == 'macOS'
74-
run: brew install cmake ninja ccache
74+
run: brew install ninja ccache
7575

7676
- name: Set Conan remote
7777
run: |

docs/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Fixed
11+
12+
- Type of shutdown_func variable in _sc_ext_collect_extensions_from_directory function
13+
1014
## [0.10.5] - 08.09.2025
1115

1216
### Added

sc-memory/sc-core/src/sc_memory_ext.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ sc_result _sc_ext_collect_extensions_from_directory(sc_char const * extension_di
6868
GDir * extension_directory = null_ptr;
6969
sc_char const * file_name = null_ptr;
7070
fModuleInitializeFunc initialize_func = null_ptr;
71-
fModuleInitializeFunc shutdown_func = null_ptr;
71+
fModuleShutdownFunc shutdown_func = null_ptr;
7272

7373
sc_message("Collect extensions from %s", extension_directory_path);
7474

0 commit comments

Comments
 (0)