From: aknudsen Date: Sun, 24 May 2009 17:00:36 +0000 (+0000) Subject: Clarify hostapi ordering somewhat X-Git-Tag: svn/1415~2 X-Git-Url: https://andrewgundersen.net/repos?a=commitdiff_plain;h=6e6e3ac65e9926e16553450fd720da66d9daab85;p=portaudio Clarify hostapi ordering somewhat --- diff --git a/src/os/unix/pa_unix_hostapis.c b/src/os/unix/pa_unix_hostapis.c index 0525f5f..2bafaa2 100644 --- a/src/os/unix/pa_unix_hostapis.c +++ b/src/os/unix/pa_unix_hostapis.c @@ -52,8 +52,7 @@ PaError PaAsiHpi_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiInd PaError PaMacCore_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index ); PaError PaSkeleton_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index ); -/** Note that ALSA is placed before OSS so that the latter is preferred over the - * latter on Linux. +/** Note that on Linux, ALSA is placed before OSS so that the former is preferred over the latter. */ PaUtilHostApiInitializer *paHostApiInitializers[] = @@ -68,7 +67,7 @@ PaUtilHostApiInitializer *paHostApiInitializers[] = PaOSS_Initialize, #endif -#else +#else /* __linux__ */ #ifdef PA_USE_OSS PaOSS_Initialize,