diff options
author | Avuton Olrich <avuton@gmail.com> | 2006-07-14 20:40:25 +0000 |
---|---|---|
committer | Avuton Olrich <avuton@gmail.com> | 2006-07-14 20:40:25 +0000 |
commit | fd2f9b8e862c827b2b3e3c818d153bc2d9e8c99b (patch) | |
tree | de38d1ca3c034a92776d3ffdd7d339d3fc7b372d /src/player.c | |
parent | fdf1afc8b3c4916e77fd12726fdcd4d90b40706d (diff) | |
download | mpd-fd2f9b8e862c827b2b3e3c818d153bc2d9e8c99b.tar.gz mpd-fd2f9b8e862c827b2b3e3c818d153bc2d9e8c99b.tar.xz mpd-fd2f9b8e862c827b2b3e3c818d153bc2d9e8c99b.zip |
Fix the undefined reference to `playerInitReal'
git-svn-id: https://svn.musicpd.org/mpd/trunk@4343 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/player.c')
-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 c7dff3456..7ac7d64aa 100644 --- a/src/player.c +++ b/src/player.c @@ -102,7 +102,7 @@ int playerInit() { return 0; } -static int playerInitReal() { +int playerInitReal() { int player_pid; blockSignals(); player_pid = fork(); |