Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
zlib: fix assert message
  • Loading branch information
bnoordhuis committed Oct 3, 2011
1 parent 365fdbf commit f1ca485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_zlib.cc
Expand Up @@ -207,7 +207,7 @@ template <node_zlib_mode mode> class ZCtx : public ObjectWrap {
HandleScope scope;

assert(args.Length() == 4 &&
"init(level, windowBits, memLevel, strategy)");
"init(windowBits, level, memLevel, strategy)");

ZCtx<mode> *ctx = ObjectWrap::Unwrap< ZCtx<mode> >(args.This());

Expand Down

0 comments on commit f1ca485

Please sign in to comment.