From f1ca48535788d5e14193ba75e9019e4fd4d55306 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 3 Oct 2011 13:40:42 +0200 Subject: [PATCH] zlib: fix assert message --- src/node_zlib.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_zlib.cc b/src/node_zlib.cc index 001df902b7..a972680f34 100644 --- a/src/node_zlib.cc +++ b/src/node_zlib.cc @@ -207,7 +207,7 @@ template class ZCtx : public ObjectWrap { HandleScope scope; assert(args.Length() == 4 && - "init(level, windowBits, memLevel, strategy)"); + "init(windowBits, level, memLevel, strategy)"); ZCtx *ctx = ObjectWrap::Unwrap< ZCtx >(args.This());