summaryrefslogtreecommitdiffstats
path: root/perl/examples/lvs.pl
diff options
context:
space:
mode:
Diffstat (limited to 'perl/examples/lvs.pl')
-rwxr-xr-xperl/examples/lvs.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/examples/lvs.pl b/perl/examples/lvs.pl
index 1a840171..1755c899 100755
--- a/perl/examples/lvs.pl
+++ b/perl/examples/lvs.pl
@@ -10,7 +10,7 @@ die "Usage: lvs.pl guest.img\n" if @ARGV != 1 || ! -f $ARGV[0];
print "Creating the libguestfs handle\n";
my $h = Sys::Guestfs->new ();
-$h->add_drive ($ARGV[0]);
+$h->add_drive_opts ($ARGV[0], format => "raw");
print "Launching, this can take a few seconds\n";
$h->launch ();