summaryrefslogtreecommitdiff
path: root/core/flags.rs
diff options
context:
space:
mode:
Diffstat (limited to 'core/flags.rs')
-rw-r--r--core/flags.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/flags.rs b/core/flags.rs
index 4deca6e2d..e1429ab9a 100644
--- a/core/flags.rs
+++ b/core/flags.rs
@@ -39,5 +39,6 @@ pub fn v8_set_flags(args: Vec<String>) -> Vec<String> {
let cstr = CStr::from_ptr(*ptr as *const c_char);
let slice = cstr.to_str().unwrap();
slice.to_string()
- }).collect()
+ })
+ .collect()
}