Index: uspace/lib/hound/src/client.c
===================================================================
--- uspace/lib/hound/src/client.c	(revision eed4139909f4e93017245a6736941de6564db9fe)
+++ uspace/lib/hound/src/client.c	(revision 1abcf1db7c2a8071caaf9983f1571b2ef88e1be6)
@@ -66,5 +66,5 @@
  * @return hound stream isntance.
  */
-static inline hound_stream_t * hound_stream_from_link(link_t *l)
+static inline hound_stream_t *hound_stream_from_link(link_t *l)
 {
 	return l ? list_get_instance(l, hound_stream_t, link) : NULL;
@@ -143,5 +143,5 @@
  * @return valid pointer to initialized structure on success, NULL on failure
  */
-hound_context_t * hound_context_create_playback(const char *name,
+hound_context_t *hound_context_create_playback(const char *name,
     pcm_format_t format, size_t bsize)
 {
@@ -156,5 +156,5 @@
  * @return valid pointer to initialized structure on success, NULL on failure
  */
-hound_context_t * hound_context_create_capture(const char *name,
+hound_context_t *hound_context_create_capture(const char *name,
     pcm_format_t format, size_t bsize)
 {
@@ -220,5 +220,5 @@
 	return hound_service_get_list(hound->session, names, count,
 	    HOUND_CONNECTED | (hound->record ?
-	        HOUND_SOURCE_DEVS : HOUND_SINK_DEVS), hound->name);
+	    HOUND_SOURCE_DEVS : HOUND_SINK_DEVS), hound->name);
 }
 
@@ -232,5 +232,5 @@
  * connect to the first possible target if it is passed this value.
  */
-errno_t hound_context_connect_target(hound_context_t *hound, const char* target)
+errno_t hound_context_connect_target(hound_context_t *hound, const char *target)
 {
 	assert(hound);
@@ -269,5 +269,5 @@
  * @return Error code.
  */
-errno_t hound_context_disconnect_target(hound_context_t *hound, const char* target)
+errno_t hound_context_disconnect_target(hound_context_t *hound, const char *target)
 {
 	assert(hound);
@@ -385,10 +385,10 @@
  * if it exists.
  */
-static hound_stream_t * hound_get_main_stream(hound_context_t *hound)
+static hound_stream_t *hound_get_main_stream(hound_context_t *hound)
 {
 	assert(hound);
 	if (!hound->main.stream)
 		hound->main.stream = hound_stream_create(hound,
-		    HOUND_STREAM_DRAIN_ON_EXIT,hound->main.format,
+		    HOUND_STREAM_DRAIN_ON_EXIT, hound->main.format,
 		    hound->main.bsize);
 	return hound->main.stream;
