1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-12 11:12:18 +00:00

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

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);
}
/******************************************************************************