Commit 00051901 authored by erik.corry@gmail.com's avatar erik.corry@gmail.com

Remove unused variable in mksnapshot.cc.

Review URL: https://chromiumcodereview.appspot.com/10559078

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@11874 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent f4f9e2c1
......@@ -345,7 +345,7 @@ int main(int argc, char** argv) {
fprintf(stderr, "Failure compiling '%s' (see above)\n", name);
exit(1);
}
Handle<Value> ret = script->Run();
script->Run();
if (try_catch.HasCaught()) {
fprintf(stderr, "Failure running '%s'\n", name);
Local<Message> message = try_catch.Message();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment