Removed unused variable

This commit is contained in:
Anne de Jong 2018-02-09 12:00:21 +01:00 committed by asceenl
parent 2946bcc50c
commit 63b45d8dfe
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ static void AvPowerSpectra_addBlock(AvPowerSpectra* aps,
dbgassert(aps && block,NULLPTRDEREF);
dbgassert(block->n_rows == aps->nfft,"Invalid block n_rows");
dbgassert(block->n_cols == aps->nchannels,"Invalid block n_cols");
const us nchannels = aps->nchannels;
const us nfft = aps->nfft;
iVARTRACE(15,nfft);