From a567bf329239480529835ccb34a6d9cc8cbbf715 Mon Sep 17 00:00:00 2001 From: kwiberg Date: Thu, 27 Aug 2015 11:17:35 -0700 Subject: [PATCH] Rename local variable to avoid shadowing See comment here: https://codereview.webrtc.org/1208993010/diff/180001/webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t_impl.h#newcode189 TBR=minyue@webrtc.org Review URL: https://codereview.webrtc.org/1315333003 Cr-Commit-Position: refs/heads/master@{#9800} --- .../audio_coding/codecs/isac/audio_encoder_isac_t_impl.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t_impl.h b/webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t_impl.h index 98f3ed9652..28e9b8e83f 100644 --- a/webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t_impl.h +++ b/webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t_impl.h @@ -187,9 +187,9 @@ AudioDecoderIsacT::AudioDecoderIsacT(LockedIsacBandwidthInfo* bwinfo) CHECK_EQ(0, T::Create(&isac_state_)); T::DecoderInit(isac_state_); if (bwinfo_) { - IsacBandwidthInfo bwinfo; - T::GetBandwidthInfo(isac_state_, &bwinfo); - bwinfo_->Set(bwinfo); + IsacBandwidthInfo bi; + T::GetBandwidthInfo(isac_state_, &bi); + bwinfo_->Set(bi); } }