diff options
Diffstat (limited to 'core/os/copymem.cpp')
-rw-r--r-- | core/os/copymem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/copymem.cpp b/core/os/copymem.cpp index 234ca50b45..49f53f1a51 100644 --- a/core/os/copymem.cpp +++ b/core/os/copymem.cpp @@ -32,7 +32,7 @@ void movemem_system(void *to, void *from,int amount) { - memmove(to,from,amount); + memmove(to,from,amount); } |