From b967eec1ab0a363c065fa545b24b04593f3a8e6c Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 26 Jul 2011 13:42:34 -0700 Subject: [PATCH] Mark some QSA audio driver functions as static. --- src/audio/qsa/SDL_qsa_audio.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/audio/qsa/SDL_qsa_audio.c b/src/audio/qsa/SDL_qsa_audio.c index 535804ca7..cd9d18655 100644 --- a/src/audio/qsa/SDL_qsa_audio.c +++ b/src/audio/qsa/SDL_qsa_audio.c @@ -650,7 +650,7 @@ QSA_OpenDevice(_THIS, const char *devname, int iscapture) return 1; } -int +static int QSA_DetectDevices(int iscapture) { uint32_t it; @@ -790,7 +790,7 @@ QSA_DetectDevices(int iscapture) } } -const char * +static const char * QSA_GetDeviceName(int index, int iscapture) { if (!iscapture) { @@ -808,7 +808,7 @@ QSA_GetDeviceName(int index, int iscapture) } } -void +static void QSA_WaitDone(_THIS) { if (!this->hidden->iscapture) { @@ -826,7 +826,7 @@ QSA_WaitDone(_THIS) } } -void +static void QSA_Deinitialize(void) { /* Clear devices array on shutdown */