From f3617f720b2ea67ece8dd5c44b566b3f0639636d Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Thu, 3 Jun 2021 15:20:07 +0200 Subject: Fixed a warning --- src/wrapped/wrappedlibc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wrapped/wrappedlibc.c b/src/wrapped/wrappedlibc.c index 5013027c..005f94df 100755 --- a/src/wrapped/wrappedlibc.c +++ b/src/wrapped/wrappedlibc.c @@ -957,7 +957,7 @@ EXPORT int my_stat(x64emu_t *emu, void* filename, void* buf) { (void)emu; struct stat64 st; - int r = stat(filename, &st); + int r = stat(filename, (struct stat*)&st); UnalignStat64(&st, buf); return r; } -- cgit 1.4.1