From ea6ba09621ec5286675516be8f914daf30c3a97b Mon Sep 17 00:00:00 2001 From: Paul Adenot Date: Fri, 18 Jan 2013 16:57:16 +0100 Subject: [PATCH] Bug 828713 - soundtouch_config.h checks the non-existing MOZ_SAMPLE_TYPE_S16LE symbol. r=ehsan --- media/libsoundtouch/src/soundtouch_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media/libsoundtouch/src/soundtouch_config.h b/media/libsoundtouch/src/soundtouch_config.h index 6807a1a21dcb..9275ba8e6ec8 100644 --- a/media/libsoundtouch/src/soundtouch_config.h +++ b/media/libsoundtouch/src/soundtouch_config.h @@ -13,7 +13,7 @@ #endif #ifndef MOZILLA_PRESUME_MMX -#ifdef MOZ_SAMPLE_TYPE_S16LE +#ifdef MOZ_SAMPLE_TYPE_S16 #define SOUNDTOUCH_DISABLE_X86_OPTIMIZATIONS 1 #endif #endif