| Index: remoting/codec/scoped_vpx_codec.cc
|
| diff --git a/remoting/codec/scoped_vpx_codec.cc b/remoting/codec/scoped_vpx_codec.cc
|
| index dda986e75d272aa0e165398b3135ada6fa442c58..c4591bf0e1f85d6598a8238a1a6bf3ba04a488a3 100644
|
| --- a/remoting/codec/scoped_vpx_codec.cc
|
| +++ b/remoting/codec/scoped_vpx_codec.cc
|
| @@ -15,7 +15,8 @@ namespace remoting {
|
| void VpxCodecDeleter::operator()(vpx_codec_ctx_t* codec) {
|
| if (codec) {
|
| vpx_codec_err_t ret = vpx_codec_destroy(codec);
|
| - CHECK_EQ(ret, VPX_CODEC_OK) << "Failed to destroy codec";
|
| + // Failed to destroy codec
|
| + CHECK_EQ(ret, VPX_CODEC_OK);
|
| delete codec;
|
| }
|
| }
|
|
|