Commit b7091203 authored by Eric Wong's avatar Eric Wong

playerCloseAudio() is static

git-svn-id: https://svn.musicpd.org/mpd/trunk@7127 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 7de5f9ce
...@@ -44,6 +44,8 @@ ...@@ -44,6 +44,8 @@
#include <errno.h> #include <errno.h>
#include <fcntl.h> #include <fcntl.h>
static void playerCloseAudio(void);
volatile int player_pid = 0; volatile int player_pid = 0;
void clearPlayerPid(void) void clearPlayerPid(void)
...@@ -377,7 +379,7 @@ char *getPlayerErrorStr(void) ...@@ -377,7 +379,7 @@ char *getPlayerErrorStr(void)
return NULL; return NULL;
} }
void playerCloseAudio(void) static void playerCloseAudio(void)
{ {
PlayerControl *pc = &(getPlayerData()->playerControl); PlayerControl *pc = &(getPlayerData()->playerControl);
......
...@@ -102,8 +102,6 @@ int playerPause(int fd); ...@@ -102,8 +102,6 @@ int playerPause(int fd);
int playerStop(int fd); int playerStop(int fd);
void playerCloseAudio(void);
void playerKill(void); void playerKill(void);
int getPlayerTotalTime(void); int getPlayerTotalTime(void);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment