genode/repos/libports/src/lib/lwip/memmove.patch
Emery Hemingway bf8b52ec3a Update LwIP to 2.1.0.rc1
This release candidate suppresses the remaining build warnings.

Ref #2335
2018-08-02 14:36:49 +02:00

13 lines
409 B
Diff

diff --git a/src/core/def.c b/src/core/def.c
index 9da36fee..58edce6f 100644
--- a/src/core/def.c
+++ b/src/core/def.c
@@ -235,6 +235,6 @@ lwip_itoa(char *result, size_t bufsize, int number)
return;
}
/* move from temporary buffer to output buffer (sign is not moved) */
- memmove(res, tmp, (size_t)((result + bufsize) - tmp));
+ MEMMOVE(res, tmp, (size_t)((result + bufsize) - tmp));
}
#endif