From 278f088c99dbf380fd4d39bba35a5eab2ede921e Mon Sep 17 00:00:00 2001 From: libretroadmin Date: Sun, 19 Jun 2022 14:09:19 +0200 Subject: [PATCH] Fix 'function declaration is not a prototype' warning on Clang/Mac --- libretro-common/include/file/file_path.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/include/file/file_path.h b/libretro-common/include/file/file_path.h index 4b54dc42d1..7ae66a9d03 100644 --- a/libretro-common/include/file/file_path.h +++ b/libretro-common/include/file/file_path.h @@ -61,7 +61,7 @@ struct path_linked_list * Create a new linked list with one item in it * The path on this item will be set to NULL **/ -struct path_linked_list* path_linked_list_new(); +struct path_linked_list* path_linked_list_new(void); /* Free the entire linked list */ bool path_linked_list_free(struct path_linked_list *in_path_linked_list);