=== modified file 'uspace/srv/fs/udf/udf_ops.c'
--- uspace/srv/fs/udf/udf_ops.c	2012-06-30 17:45:07 +0000
+++ uspace/srv/fs/udf/udf_ops.c	2012-07-03 08:59:38 +0000
@@ -441,7 +441,7 @@
 	}
 */
 
-	printf("ROOT: index=%d, links=%d\n", node->index, node->link_cnt);
+	printf("ROOT: index=%d, links=%zu\n", node->index, node->link_cnt);
 	*index = instance->volumes[DEFAULT_VOL].root_dir;
 	*size = node->data_size;
 	*linkcnt = node->link_cnt;

=== modified file 'uspace/srv/fs/udf/udf_volume.c'
--- uspace/srv/fs/udf/udf_volume.c	2012-06-25 21:56:08 +0000
+++ uspace/srv/fs/udf/udf_volume.c	2012-07-03 08:59:02 +0000
@@ -278,7 +278,7 @@
 			pm = (udf_type1_partition_map_t *)idx;
 			
 			if (pm->partition_map_type > 1) {
-				printf("Volume[%d]: partition [type %d] found and skipped\n", i, pm->partition_map_type);
+				printf("Volume[%zu]: partition [type %d] found and skipped\n", i, pm->partition_map_type);
 				idx += pm->partition_map_lenght;
 				continue;
 			}
@@ -286,7 +286,7 @@
 			instance->volumes[i].partitions[instance->volumes[i].partition_cnt] =
 			    &instance->partitions[pm->partition_number];
 
-			printf("Volume[%d]: partition [type %d] found and filled\n", i, pm->partition_map_type);
+			printf("Volume[%zu]: partition [type %d] found and filled\n", i, pm->partition_map_type);
 			instance->volumes[i].partition_cnt++;			
 			idx += sizeof(udf_type1_partition_map_t);
 		}

