[pulseaudio-commits] src/pulse

Arun Raghavan arun at kemper.freedesktop.org
Fri Aug 2 01:54:12 PDT 2013


 src/pulse/sample.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 55e169655d0498890380884af24c7ff2beb91113
Author: Arun Raghavan <arun.raghavan at collabora.co.uk>
Date:   Tue Jul 30 14:51:59 2013 +0530

    sample: Apply SPARC-specific condition on SPARC only
    
    Improves correctness, unbreaks software volume in recent Android.

diff --git a/src/pulse/sample.h b/src/pulse/sample.h
index 9eb4df0..34087e0 100644
--- a/src/pulse/sample.h
+++ b/src/pulse/sample.h
@@ -120,7 +120,7 @@ PA_C_DECL_BEGIN
 #endif
 
 /* On Sparc, WORDS_BIGENDIAN needs to be set if _BIG_ENDIAN is defined. */
-#ifdef _BIG_ENDIAN
+#if defined(__sparc__) && defined(_BIG_ENDIAN)
 #define WORDS_BIGENDIAN
 #endif
 



More information about the pulseaudio-commits mailing list