Fix compiler warnings (#3784)

The definition of os_get_invalid_handle in platform_internal.h did not
match the declaration in platform_api_extension.h.
This commit is contained in:
Marcin Kolny
2024-09-11 01:59:16 +01:00
committed by GitHub
parent 1a61cb75e1
commit b882017674
13 changed files with 13 additions and 13 deletions

View File

@ -115,7 +115,7 @@ os_set_signal_number_for_blocking_op(int signo);
typedef int os_file_handle;
static inline os_file_handle
os_get_invalid_handle()
os_get_invalid_handle(void)
{
return -1;
}