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/player.c | |
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 '')
-rw-r--r-- | src/player.c | 2 |
1 files changed, 1 insertions, 1 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; |