mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +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.
|
* but safe for overlapping regions.
|
||||||
*/
|
*/
|
||||||
static void *strmove(void *dest, const void *src) {
|
static void *strmove(void *dest, const void *src) {
|
||||||
memmove(dest, src, strlen(src) + 1);
|
return memmove(dest, src, strlen(src) + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue