From 5be48305c25b49c6491e665081ae02a88e7aaabe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Wed, 22 Apr 2009 14:56:10 +0000 Subject: [PATCH] Small cleanup. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30328 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/bin/isvolume.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/bin/isvolume.cpp b/src/bin/isvolume.cpp index 509020982d..0d4c0b9455 100644 --- a/src/bin/isvolume.cpp +++ b/src/bin/isvolume.cpp @@ -101,8 +101,7 @@ main(int argc, char** argv) BDiskDeviceRoster roster; BDiskDevice diskDevice; BPartition* partition; - ret = roster.FindPartitionByVolume(volume, &diskDevice, - &partition); + ret = roster.FindPartitionByVolume(volume, &diskDevice, &partition); if (ret != B_OK) { fprintf(stderr, "%s: failed to get partition for device %ld: %s\n", argv[0], volumeDevice, strerror(ret));