zlib: replace C cast with static_cast

Seems to have escaped the Eye of Sauron^WFedor in commit 8e29ce9.
archived-io.js-v0.10
Ben Noordhuis 2013-08-14 23:49:29 +02:00
parent c50750e1fd
commit dce02a1055
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ class ZCtx : public ObjectWrap {
if (args.Length() < 1 || !args[0]->IsInt32()) {
return ThrowTypeError("Bad argument");
}
node_zlib_mode mode = (node_zlib_mode) args[0]->Int32Value();
node_zlib_mode mode = static_cast<node_zlib_mode>(args[0]->Int32Value());
if (mode < DEFLATE || mode > UNZIP) {
return ThrowTypeError("Bad argument");