From 56446c913f0a0c28fb1d734986942da122b1174a Mon Sep 17 00:00:00 2001 From: Tyler Retzlaff Date: Fri, 15 Jan 2021 11:38:21 -0800 Subject: [PATCH] eal/windows: fix C++ compatibility Explicitly cast void * to type * so that EAL headers may be compiled as C or C++. Fixes: e8428a9d89f1 ("eal/windows: add some basic functions and macros") Cc: stable@dpdk.org Signed-off-by: Tyler Retzlaff --- lib/librte_eal/windows/include/rte_os.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_eal/windows/include/rte_os.h b/lib/librte_eal/windows/include/rte_os.h index ea3fe60e53..7ef38ff06c 100644 --- a/lib/librte_eal/windows/include/rte_os.h +++ b/lib/librte_eal/windows/include/rte_os.h @@ -86,7 +86,7 @@ asprintf(char **buffer, const char *format, ...) return -1; size++; - *buffer = malloc(size); + *buffer = (char *)malloc(size); if (*buffer == NULL) return -1; -- 2.20.1