Index: uspace/lib/hound/src/client.c
===================================================================
--- uspace/lib/hound/src/client.c	(revision b7fd2a02e4161f4edd38548e7f8456b8021549be)
+++ uspace/lib/hound/src/client.c	(revision e0f47f53448ea5824cda6d06a7b34f8d2d74c41e)
@@ -76,5 +76,5 @@
 	hound_sess_t *session;
 	/** context name, reported to the daemon */
-	const char *name;
+	char *name;
 	/** True if the instance is record context */
 	bool record;
@@ -196,5 +196,5 @@
  */
 errno_t hound_context_get_available_targets(hound_context_t *hound,
-    const char ***names, size_t *count)
+    char ***names, size_t *count)
 {
 	assert(hound);
@@ -213,5 +213,5 @@
  */
 errno_t hound_context_get_connected_targets(hound_context_t *hound,
-    const char ***names, size_t *count)
+    char ***names, size_t *count)
 {
 	assert(hound);
@@ -237,5 +237,5 @@
 	assert(target);
 
-	const char **tgt = NULL;
+	char **tgt = NULL;
 	size_t count = 1;
 	errno_t ret = EOK;
