diff options
author | Eric Wong <normalperson@yhbt.net> | 2007-09-08 03:29:13 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2007-09-08 03:29:13 +0000 |
commit | 38de8d08080c146f4c55032cec48ef58a8b5dec8 (patch) | |
tree | 6eb0a439c400da9255094fd58e3f2572afd8eaec /src | |
parent | 30ed6bcf22bedc9720382351fdf46218cbf02aae (diff) | |
download | mpd-38de8d08080c146f4c55032cec48ef58a8b5dec8.tar.gz mpd-38de8d08080c146f4c55032cec48ef58a8b5dec8.tar.xz mpd-38de8d08080c146f4c55032cec48ef58a8b5dec8.zip |
playerInit() is static
git-svn-id: https://svn.musicpd.org/mpd/trunk@6868 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src')
-rw-r--r-- | src/player.c | 2 | ||||
-rw-r--r-- | src/player.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/player.c b/src/player.c index d73b0a0e1..5fbf590ff 100644 --- a/src/player.c +++ b/src/player.c @@ -112,7 +112,7 @@ void player_sigChldHandler(int pid, int status) } } -int playerInit(void) +static int playerInit(void) { PlayerControl *pc = &(getPlayerData()->playerControl); int pid; diff --git a/src/player.h b/src/player.h index 17dcf16e0..cf265635f 100644 --- a/src/player.h +++ b/src/player.h @@ -120,8 +120,6 @@ char *getPlayerErrorStr(void); int getPlayerError(void); -int playerInit(void); - int playerWait(int fd); int queueSong(Song * song); |