diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-06-04 02:51:54 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-06-04 02:51:54 +0000 |
commit | 630d33b234dc116ca175c847abf4ca38e64d52fe (patch) | |
tree | 4929ccaf4efa5f1b82b13792d6cc3fe24420062b /src/player.c | |
parent | f958e0a4c5bb7241b2ec443a402d10c29abfc08f (diff) | |
download | mpd-630d33b234dc116ca175c847abf4ca38e64d52fe.tar.gz mpd-630d33b234dc116ca175c847abf4ca38e64d52fe.tar.xz mpd-630d33b234dc116ca175c847abf4ca38e64d52fe.zip |
finish ack error codes
git-svn-id: https://svn.musicpd.org/mpd/trunk@1325 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/player.c')
-rw-r--r-- | src/player.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/player.c b/src/player.c index b4b4e8b74..cda88fff4 100644 --- a/src/player.c +++ b/src/player.c @@ -386,7 +386,8 @@ int playerSeek(FILE * fp, Song * song, float time) { PlayerControl * pc = &(getPlayerData()->playerControl); if(pc->state==PLAYER_STATE_STOP) { - commandError(fp, "player not currently playing"); + commandError(fp, ACK_ERROR_PLAYER_SYNC, + "player not currently playing"); return -1; } |