Fix Minor Warnings (is_high_contrast)

This commit is contained in:
Hassan DRAGA 2024-07-11 12:09:03 -04:00
parent 13f1ebe1fe
commit 1dbce3938e
2 changed files with 2 additions and 2 deletions

View File

@ -348,7 +348,7 @@ WEBUI_EXPORT void webui_set_high_contrast(size_t window, bool status);
*
* @example bool hc = webui_is_high_contrast();
*/
WEBUI_EXPORT bool webui_is_high_contrast();
WEBUI_EXPORT bool webui_is_high_contrast(void);
/**
* @brief Check if a web browser is installed.

View File

@ -1006,7 +1006,7 @@ bool webui_browser_exist(size_t browser) {
return _webui_browser_exist(NULL, browser);
}
bool webui_is_high_contrast() {
bool webui_is_high_contrast(void) {
#ifdef WEBUI_LOG
printf("[User] webui_is_high_contrast()\n");