Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
Better way of keeping -Wall quiet.
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidGriffith committed Jun 11, 2016
1 parent a09f8f5 commit 5434cde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/curses/ux_audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ static void stereoize(float *, float *, size_t);

static int mypower(int, int);
static char *getfiledata(FILE *, long *);
static void *mixer(void);
static void *mixer(void *);

static pthread_t mixer_id;
static pthread_t playaiff_id;
Expand Down Expand Up @@ -312,7 +312,7 @@ void os_wait_sample (void)
* Data presented to the mixer must be floats at 44100hz
*
*/
static void *mixer(void)
static void *mixer(void * UNUSED(arg))
{
short *shortbuffer;
int default_driver;
Expand Down

0 comments on commit 5434cde

Please sign in to comment.