From 72fb6ee5ea4a556765ea6f18d6b3793cdedf8f79 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 4 Feb 2018 16:44:37 +0100 Subject: [PATCH] [WUPS] Fixed the module compiling --- wups_include/wups.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wups_include/wups.h b/wups_include/wups.h index a7407c9..7c265a7 100644 --- a/wups_include/wups.h +++ b/wups_include/wups.h @@ -64,7 +64,7 @@ typedef struct wups_loader_entry_t { const wups_loader_entry_t wups_load_ ## original_func = { \ .type = WUPS_LOADER_ENTRY_FUNCTION, \ .data = { \ - .function = { \ + ._function = { \ .name = #original_func, \ .library = rpl_type, \ .target = &(replace_func) \ @@ -77,7 +77,7 @@ typedef struct wups_loader_entry_t { const wups_loader_entry_t wups_load_ ## original_func = { \ .type = WUPS_LOADER_ENTRY_FUNCTION_MANDATORY, \ .data = { \ - .function = { \ + ._function = { \ .name = #original_func, \ .library = rpl_type, \ .target = &(replace_func) \ @@ -90,7 +90,7 @@ typedef struct wups_loader_entry_t { const wups_loader_entry_t wups_export_ ## symbol = { \ .type = WUPS_LOADER_ENTRY_EXPORT, \ .data = { \ - .export = { \ + ._export = { \ .name = #symbol, \ .target = &(symbol) \ } \