mirror of
https://github.com/apache/nuttx.git
synced 2026-05-22 05:42:05 +08:00
Fix ordering of parameters in call to memmove() in strings.h. Noted by David Sidrane.
This commit is contained in:
+1
-1
@@ -94,7 +94,7 @@ static inline int bcmp(FAR const void *b1, FAR const void *b2, size_t len)
|
||||
|
||||
static inline void bcopy(FAR const void *b1, FAR void *b2, size_t len)
|
||||
{
|
||||
(void)memmove(b1, b2, len);
|
||||
(void)memmove(b2, b1, len);
|
||||
}
|
||||
|
||||
#ifndef CONFIG_LIBC_ARCH_BZERO
|
||||
|
||||
Reference in New Issue
Block a user