mirror of https://github.com/nodejs/node.git
zlib: replace C cast with static_cast
Seems to have escaped the Eye of Sauron^WFedor in commit 8e29ce9
.
archived-io.js-v0.10
parent
c50750e1fd
commit
dce02a1055
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue