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

src: fix windows build error #8893

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions src/node_zlib.cc
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ enum node_zlib_mode {
};

enum node_zlib_error {
NO_ERROR,
FAILED,
WRITE_PENDING
kNoError,
kFailed,
kWritePending
};

void InitZlib(v8::Handle<v8::Object> target);
Expand Down Expand Up @@ -212,7 +212,7 @@ class ZCtx : public AsyncWrap {
if (!async) {
// sync version
Process(work_req);
if (CheckError(ctx) == NO_ERROR)
if (CheckError(ctx) == kNoError)
AfterSync(ctx, args);
return;
}
Expand Down Expand Up @@ -310,18 +310,18 @@ class ZCtx : public AsyncWrap {
ZCtx::Error(ctx, "Missing dictionary");
else
ZCtx::Error(ctx, "Bad dictionary");
return FAILED;
return kFailed;
default:
// something else.
if (ctx->strm_.total_out == 0) {
ZCtx::Error(ctx, "Zlib error");
return FAILED;
return kFailed;
} else {
return WRITE_PENDING;
return kWritePending;
}
}

return NO_ERROR;
return kNoError;
}


Expand All @@ -336,7 +336,7 @@ class ZCtx : public AsyncWrap {
Context::Scope context_scope(env->context());

node_zlib_error error = CheckError(ctx);
if (error == FAILED)
if (error == kFailed)
return;

Local<Integer> avail_out = Integer::New(env->isolate(),
Expand All @@ -350,7 +350,7 @@ class ZCtx : public AsyncWrap {
Local<Value> args[2] = { avail_in, avail_out };
ctx->MakeCallback(env->callback_string(), ARRAY_SIZE(args), args);

if (error == WRITE_PENDING) {
if (error == kWritePending) {
ZCtx::Error(ctx, "Zlib error");
return;
}
Expand Down