Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Mark some QSA audio driver functions as static.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 26, 2011
1 parent 878e689 commit 8cca4bc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/audio/qsa/SDL_qsa_audio.c
Expand Up @@ -650,7 +650,7 @@ QSA_OpenDevice(_THIS, const char *devname, int iscapture)
return 1;
}

int
static int
QSA_DetectDevices(int iscapture)
{
uint32_t it;
Expand Down Expand Up @@ -790,7 +790,7 @@ QSA_DetectDevices(int iscapture)
}
}

const char *
static const char *
QSA_GetDeviceName(int index, int iscapture)
{
if (!iscapture) {
Expand All @@ -808,7 +808,7 @@ QSA_GetDeviceName(int index, int iscapture)
}
}

void
static void
QSA_WaitDone(_THIS)
{
if (!this->hidden->iscapture) {
Expand All @@ -826,7 +826,7 @@ QSA_WaitDone(_THIS)
}
}

void
static void
QSA_Deinitialize(void)
{
/* Clear devices array on shutdown */
Expand Down

0 comments on commit 8cca4bc

Please sign in to comment.