Skip to content

Commit

Permalink
Correct compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
cholcombe973 committed Jun 21, 2016
1 parent e7337b2 commit 543e0ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1230,7 +1230,7 @@ fn parse_volume_status(output_str: String)->Result<Vec<BrickStatus>, GlusterErro

}

pub fn volume_status(volume: &str) -> Result<Vec<BrickStatus, GlusterError>>{
pub fn volume_status(volume: &str) -> Result<Vec<BrickStatus>, GlusterError>{
let mut arg_list: Vec<String> = Vec::new();
arg_list.push("vol".to_string());
arg_list.push("status".to_string());
Expand Down

0 comments on commit 543e0ae

Please sign in to comment.