Skip to content

Commit

Permalink
fix missing void
Browse files Browse the repository at this point in the history
  • Loading branch information
daanx committed Dec 10, 2024
1 parent ed31847 commit 2556a20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/os.c
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ size_t _mi_os_numa_node_count_get(void) {
return count;
}

int _mi_os_numa_node_get() {
int _mi_os_numa_node_get(void) {
size_t numa_count = _mi_os_numa_node_count();
if (numa_count<=1) return 0; // optimize on single numa node systems: always node 0
// never more than the node count and >= 0
Expand Down

0 comments on commit 2556a20

Please sign in to comment.