summaryrefslogtreecommitdiff
path: root/extras/volume_id/vol_id.c
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@suse.de>2006-07-25 14:59:50 +0200
committerKay Sievers <kay.sievers@suse.de>2006-07-25 14:59:50 +0200
commitcdf18948639e56d2e3c71606c72e2f2d239c100b (patch)
tree156a00e8c63b093928b611c17cfd1dfbfaf96353 /extras/volume_id/vol_id.c
parentb437ec958a505c057870c40bf668d8692d60dc3a (diff)
libvolume_id: add parameter 'size' to all probe functions
Diffstat (limited to 'extras/volume_id/vol_id.c')
-rw-r--r--extras/volume_id/vol_id.c48
1 files changed, 24 insertions, 24 deletions
diff --git a/extras/volume_id/vol_id.c b/extras/volume_id/vol_id.c
index d516eb5cbd..96ccaf3637 100644
--- a/extras/volume_id/vol_id.c
+++ b/extras/volume_id/vol_id.c
@@ -213,53 +213,53 @@ int main(int argc, char *argv[])
printf("%s\n", vid->type);
if (volume_id_probe_jmicron_raid(vid, 0, size) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_vfat(vid, 0) == 0)
+ if (volume_id_probe_vfat(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_linux_swap(vid, 0) == 0)
+ if (volume_id_probe_linux_swap(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_luks(vid, 0) == 0)
+ if (volume_id_probe_luks(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_xfs(vid, 0) == 0)
+ if (volume_id_probe_xfs(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_ext(vid, 0) == 0)
+ if (volume_id_probe_ext(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_reiserfs(vid, 0) == 0)
+ if (volume_id_probe_reiserfs(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_jfs(vid, 0) == 0)
+ if (volume_id_probe_jfs(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_udf(vid, 0) == 0)
+ if (volume_id_probe_udf(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_iso9660(vid, 0) == 0)
+ if (volume_id_probe_iso9660(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_hfs_hfsplus(vid, 0) == 0)
+ if (volume_id_probe_hfs_hfsplus(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_ufs(vid, 0) == 0)
+ if (volume_id_probe_ufs(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_ntfs(vid, 0) == 0)
+ if (volume_id_probe_ntfs(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_cramfs(vid, 0) == 0)
+ if (volume_id_probe_cramfs(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_romfs(vid, 0) == 0)
+ if (volume_id_probe_romfs(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_hpfs(vid, 0) == 0)
+ if (volume_id_probe_hpfs(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_sysv(vid, 0) == 0)
+ if (volume_id_probe_sysv(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_minix(vid, 0) == 0)
+ if (volume_id_probe_minix(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_ocfs1(vid, 0) == 0)
+ if (volume_id_probe_ocfs1(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_ocfs2(vid, 0) == 0)
+ if (volume_id_probe_ocfs2(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_vxfs(vid, 0) == 0)
+ if (volume_id_probe_vxfs(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_squashfs(vid, 0) == 0)
+ if (volume_id_probe_squashfs(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_netware(vid, 0) == 0)
+ if (volume_id_probe_netware(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_gfs(vid, 0) == 0)
+ if (volume_id_probe_gfs(vid, 0, 0) == 0)
printf("%s\n", vid->type);
- if (volume_id_probe_gfs2(vid, 0) == 0)
+ if (volume_id_probe_gfs2(vid, 0, 0) == 0)
printf("%s\n", vid->type);
goto exit;