Index: uspace/app/tmon/list.c
===================================================================
--- uspace/app/tmon/list.c	(revision 25935f1e4323ed940bf5ea4500494ba89c8e04ed)
+++ uspace/app/tmon/list.c	(revision fc338e0106f262c2c03301e6708b4ee2a6b365ef)
@@ -42,4 +42,5 @@
 
 #define NAME "tmon"
+#define MAX_PATH_LENGTH 1024
 
 static void print_list_item(service_id_t svc)
@@ -53,5 +54,11 @@
 	}
 
-	// FIXME: print something
+	char path[MAX_PATH_LENGTH];
+	if ((rc = devman_fun_get_path(diag_handle, path, sizeof(path)))) {
+		printf(NAME ": Error resolving path of device with SID %ld, skipping.\n", svc);
+		return;
+	}
+
+	printf("%s\n", path);
 }
 
