Index: uspace/srv/net/app/nettest1/nettest1.c
===================================================================
--- uspace/srv/net/app/nettest1/nettest1.c	(revision 2d68c7227443b722fb808be89e9b6406c267f64b)
+++ uspace/srv/net/app/nettest1/nettest1.c	(revision b4ff8a6d2435311dc46c2bc8466be4feb5750e1a)
@@ -244,5 +244,7 @@
 			return socket_ids[ index ];
 		}
-		if( verbose ) print_mark( index );
+		if( verbose ){
+			print_mark( index );
+		}
 	}
 	return EOK;
@@ -366,5 +368,5 @@
 	ERROR_DECLARE;
 
-	size_t				size			= 28;
+	size_t				size			= 27;
 	int					verbose			= 0;
 	sock_type_t			type			= SOCK_DGRAM;
Index: uspace/srv/net/app/nettest2/nettest2.c
===================================================================
--- uspace/srv/net/app/nettest2/nettest2.c	(revision 2d68c7227443b722fb808be89e9b6406c267f64b)
+++ uspace/srv/net/app/nettest2/nettest2.c	(revision b4ff8a6d2435311dc46c2bc8466be4feb5750e1a)
@@ -366,5 +366,5 @@
 	ERROR_DECLARE;
 
-	size_t				size			= 29;
+	size_t				size			= 28;
 	int					verbose			= 0;
 	sock_type_t			type			= SOCK_DGRAM;
@@ -507,7 +507,10 @@
 
 	ERROR_PROPAGATE( sockets_create( verbose, socket_ids, sockets, family, type ));
+
 	if( type == SOCK_STREAM ){
 		ERROR_PROPAGATE( sockets_connect( verbose, socket_ids, sockets, address, addrlen ));
 	}
+
+	if( verbose ) printf( "\n" );
 
 	if( ERROR_OCCURRED( gettimeofday( & time_before, NULL ))){
@@ -546,5 +549,5 @@
 	ERROR_PROPAGATE( sockets_close( verbose, socket_ids, sockets ));
 
-	if( verbose ) printf( "Exiting\n" );
+	if( verbose ) printf( "\nExiting\n" );
 
 	return EOK;
