mirror of
https://github.com/pezkuwichain/wasm-instrument.git
synced 2026-06-15 10:21:01 +00:00
more fixes to fixes
This commit is contained in:
+2
-2
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user