From f67658038697a5d04e4c3d699415b6317fc86ace Mon Sep 17 00:00:00 2001 From: Craig Tiller Date: Tue, 22 Dec 2015 13:49:30 -0800 Subject: [PATCH] Eliminate gpr_ int types - and insist on C99 variants instead --- ext/call.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/call.cc b/ext/call.cc index c0e2b0f0..c6e10bc1 100644 --- a/ext/call.cc +++ b/ext/call.cc @@ -586,7 +586,7 @@ NAN_METHOD(Call::New) { return Nan::ThrowTypeError( "Call's fifth argument must be another call, if provided"); } - gpr_uint32 propagate_flags = GRPC_PROPAGATE_DEFAULTS; + uint32_t propagate_flags = GRPC_PROPAGATE_DEFAULTS; if (info[5]->IsUint32()) { propagate_flags = Nan::To(info[5]).FromJust(); } else if (!(info[5]->IsUndefined() || info[5]->IsNull())) {