Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jvoisin committed Sep 30, 2023
1 parent a274527 commit 160298c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/string.h
Expand Up @@ -73,7 +73,7 @@ _FORTIFY_FN(memmove) void *memmove(void * _FORTIFY_POS0 __d,
const void * _FORTIFY_POS0 __s, size_t __n)
{
#if __has_builtin(__builtin___memmove_chk) && USE_NATIVE_CHK
return __builtin___memcpy_chk(__d, __s, __n, __bos(__d, 0));
return __builtin___memmove_chk(__d, __s, __n, __bos(__d, 0));
#else
size_t __bd = __bos(__d, 0);
size_t __bs = __bos(__s, 0);
Expand Down

0 comments on commit 160298c

Please sign in to comment.