Skip to content

Commit

Permalink
fix broken call to GetContVolInfo in Storage::GetUsedDisks
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Fehr committed Aug 22, 2013
1 parent 888c89b commit 334be19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/modules/Storage.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6922,7 +6922,8 @@ def GetUsedDisks(device)
ret = []
tg = GetTargetMap()
info = {}
if ( _GetContVolInfo_result = GetContVolInfo(device, info_ref);
if ( info_ref = arg_ref(info);
_GetContVolInfo_result = GetContVolInfo(device, info_ref);
info = info_ref.value;
_GetContVolInfo_result
)
Expand Down

0 comments on commit 334be19

Please sign in to comment.