diff options
Diffstat (limited to 'core/os/copymem.h')
-rw-r--r-- | core/os/copymem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/copymem.h b/core/os/copymem.h index 0452b1a36c..9b13d6c731 100644 --- a/core/os/copymem.h +++ b/core/os/copymem.h @@ -39,7 +39,7 @@ #include <string.h> -#define copymem(to,from,count) memcpy(to,from,count) +#define copymem(to, from, count) memcpy(to, from, count) #define zeromem(to, count) memset(to, 0, count) #define movemem(to, from, count) memmove(to, from, count) |