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:
parent
61b58271f9
commit
1f101d22f0
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
|
|
Loading…
Reference in a new issue