diff options
author | adrian <adrian@FreeBSD.org> | 2012-04-28 18:56:17 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2012-04-28 18:56:17 +0000 |
commit | f67b4d433308479a900040e4c5f3e54133015eed (patch) | |
tree | efd7f0d08e11a926de569525a8e96322b70e8441 | |
parent | 0f8fc5e936e1c42e97bcfeb169b885ee082a6e92 (diff) | |
download | FreeBSD-src-f67b4d433308479a900040e4c5f3e54133015eed.zip FreeBSD-src-f67b4d433308479a900040e4c5f3e54133015eed.tar.gz |
Although not strictly needed, quieten a compiler warning by a user.
-rw-r--r-- | sys/dev/ath/ath_hal/ar5416/ar5416_ani.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c b/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c index 2e48473..9497ec6 100644 --- a/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c +++ b/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c @@ -815,7 +815,7 @@ ar5416AniGetListenTime(struct ath_hal *ah) { struct ath_hal_5212 *ahp = AH5212(ah); struct ar5212AniState *aniState = NULL; - int32_t listenTime; + int32_t listenTime = 0; int good; HAL_SURVEY_SAMPLE hs; HAL_CHANNEL_SURVEY *cs = AH_NULL; |