lib/DtHelp: strmove(): return memmove() result

This commit is contained in:
Jon Trulson 2023-02-18 15:50:28 -07:00
parent 61b58271f9
commit 1f101d22f0
1 changed files with 1 additions and 1 deletions

View File

@ -4366,7 +4366,7 @@ FindSnbEntry(
* but safe for overlapping regions.
*/
static void *strmove(void *dest, const void *src) {
memmove(dest, src, strlen(src) + 1);
return memmove(dest, src, strlen(src) + 1);
}
/******************************************************************************