more fixes to fixes

This commit is contained in:
NikVolf
2018-05-18 16:45:04 +04:00
parent 816f14eac7
commit edabee0649
2 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -22,12 +22,12 @@ fn main() {
.short("e")
.takes_value(true)
.value_name("functions")
.help("Comma-separated list of exported functions to keep. Default: 'call'"))
.help(&format!("Comma-separated list of exported functions to keep. Default: '{}'", utils::CALL_SYMBOL)))
.get_matches();
let exports = matches
.value_of("exports")
.unwrap_or("call")
.unwrap_or(utils::CALL_SYMBOL)
.split(',')
.collect();