Index: uspace/srv/fs/exfat/exfat_ops.c
===================================================================
--- uspace/srv/fs/exfat/exfat_ops.c	(revision 1420cae927ed7995a8a100f5416a5b07fe83635e)
+++ uspace/srv/fs/exfat/exfat_ops.c	(revision 8a1be7692f8710c1044d21f081dc5cffc0d5c33d)
@@ -72,4 +72,5 @@
  */
 
+static void exfat_fsinfo(exfat_bs_t *, service_id_t);
 static errno_t exfat_root_get(fs_node_t **, service_id_t);
 static errno_t exfat_match(fs_node_t **, fs_node_t *, const char *);
@@ -91,5 +92,4 @@
 static errno_t exfat_total_block_count(service_id_t, uint64_t *);
 static errno_t exfat_free_block_count(service_id_t, uint64_t *);
-static void exfat_fsinfo(exfat_bs_t *, service_id_t);
 
 /*
@@ -1239,5 +1239,5 @@
 
 /* Print debug info */
-void exfat_fsinfo(exfat_bs_t *bs, service_id_t service_id)
+static void exfat_fsinfo(exfat_bs_t *bs, service_id_t service_id)
 {
 	printf("exFAT file system mounted\n");
@@ -1262,8 +1262,10 @@
 			return;
 		printf("Clst %d: %x", i, clst);
-		if (i >= 2)
-			printf(", Bitmap: %d\n", exfat_bitmap_is_free(bs, service_id, i) != EOK);
-		else
+		if (i >= 2) {
+			printf(", Bitmap: %d\n", exfat_bitmap_is_free(bs,
+			    service_id, i) != EOK);
+		} else {
 			printf("\n");
+		}
 	}
 }
