From aa2e39baedbac0062ccc7c46c1241d051fda1694 Mon Sep 17 00:00:00 2001 From: Martin Blapp Date: Sun, 4 May 2003 05:57:50 +0000 Subject: [PATCH] My previous commit broke builds for restricted namespaces. Add a underscore to fix this. Reviewed by: peter --- sys/sys/soundcard.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/soundcard.h b/sys/sys/soundcard.h index e56a90fedef..98c61897e1a 100644 --- a/sys/sys/soundcard.h +++ b/sys/sys/soundcard.h @@ -163,7 +163,7 @@ struct snd_size { #define AFMT_MPEG 0x00000200 /* MPEG MP2/MP3 audio */ #define AFMT_AC3 0x00000400 /* Dolby Digital AC3 */ -#if BYTE_ORDER == LITTLE_ENDIAN +#if _BYTE_ORDER == _LITTLE_ENDIAN #define AFMT_S16_NE AFMT_S16_LE /* native endian signed 16 */ #else #define AFMT_S16_NE AFMT_S16_BE