You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This report is about a warning at line 1097 in which memmove_s is being used. Apparentlly, mingw gcc doesn't recognize that memmove_s is a part of the standard Windows API.
@hishamhm You've already fixed this issue by the commit e4eae33. There, you've replaced memmove_s with the regular memmove, making the warning above go away.
mingw32-gcc -O2 -c -o src/lfs.o -IC:\Program Files\Luarocks3.4.0 src/lfs.c
src/lfs.c: In function 'push_link_target':
src/lfs.c:1097:9: warning: implicit declaration of function 'memmove_s'; did you mean 'memmove'? [-Wimplicit-function-declaration]
1097 | memmove_s(target, tsize - 3, target + 4, tsize - 3);
| ^~~~~~~~~
| memmove
The text was updated successfully, but these errors were encountered: