From 4598d01a280884063c1e8a253651dfdb939a28b5 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 4 Jul 2015 20:17:59 +0200 Subject: [PATCH] Fix implicit declaration warning --- core_info.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core_info.h b/core_info.h index 386419c944..f223a435bf 100644 --- a/core_info.h +++ b/core_info.h @@ -104,10 +104,10 @@ const char *core_info_list_get_all_extensions(core_info_list_t *list); bool core_info_list_get_display_name(core_info_list_t *list, const char *path, char *buf, size_t size); -bool core_info_get_display_name_from_file(const char *path, char *buf, size_t size); - bool core_info_get_display_name(const char *path, char *s, size_t len); +void core_info_get_name(const char *path, char *s, size_t len); + #ifdef __cplusplus } #endif