Index: uspace/lib/libc/generic/loader.c
===================================================================
--- uspace/lib/libc/generic/loader.c	(revision e64c4b23c4488725f4f9cd385ee38df889277d40)
+++ uspace/lib/libc/generic/loader.c	(revision b1a29bbfb0fe934243d728b6599dbc36e86dc01c)
@@ -51,5 +51,5 @@
  *		de-allocated using free() after use).
  */
-loader_t *loader_spawn(char *name)
+loader_t *loader_spawn(const char *name)
 {
 	int phone_id, rc;
Index: uspace/lib/libc/generic/mem.c
===================================================================
--- uspace/lib/libc/generic/mem.c	(revision e64c4b23c4488725f4f9cd385ee38df889277d40)
+++ uspace/lib/libc/generic/mem.c	(revision b1a29bbfb0fe934243d728b6599dbc36e86dc01c)
@@ -188,5 +188,6 @@
 void *memmove(void *dst, const void *src, size_t n)
 {
-	uint8_t *dp, *sp;
+	const uint8_t *sp;
+	uint8_t *dp;
 
 	/* Nothing to do? */
