| Index: sandbox/win/src/sid.cc
|
| diff --git a/sandbox/win/src/sid.cc b/sandbox/win/src/sid.cc
|
| index 261605d547b99cf303913e72943125f71991dee6..19c645bf67e7ea15c454243e2b458644be2c8238 100644
|
| --- a/sandbox/win/src/sid.cc
|
| +++ b/sandbox/win/src/sid.cc
|
| @@ -16,7 +16,7 @@ Sid::Sid(WELL_KNOWN_SID_TYPE type) {
|
| DWORD size_sid = SECURITY_MAX_SID_SIZE;
|
| BOOL result = ::CreateWellKnownSid(type, NULL, sid_, &size_sid);
|
| DCHECK(result);
|
| - DBG_UNREFERENCED_LOCAL_VARIABLE(result);
|
| + (void)result;
|
| }
|
|
|
| const SID *Sid::GetPSID() const {
|
|
|