Merge pull request #101279 from akien-mga/audio-pitch-shift-fix-gcc-warning
Fix GCC warning about potential stringop-overflow in AudioEffectPitcShift
This commit is contained in:
commit
e1a1acc66b
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ class AudioEffectPitchShift : public AudioEffect {
|
|||
public:
|
||||
friend class AudioEffectPitchShiftInstance;
|
||||
|
||||
enum FFTSize {
|
||||
enum FFTSize : unsigned int {
|
||||
FFT_SIZE_256,
|
||||
FFT_SIZE_512,
|
||||
FFT_SIZE_1024,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue