mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-14 00:05:03 -05:00
[mpd] Fix copy/paste error in log message
This commit is contained in:
parent
e6b53cb88e
commit
595f7c6091
@ -2031,7 +2031,7 @@ mpd_command_listplaylist(struct evbuffer *evbuf, int argc, char **argv, char **e
|
||||
|
||||
if (argc < 2)
|
||||
{
|
||||
ret = asprintf(errmsg, "Missing argument for command 'load'");
|
||||
ret = asprintf(errmsg, "Missing argument for command 'listplaylist'");
|
||||
if (ret < 0)
|
||||
DPRINTF(E_LOG, L_MPD, "Out of memory\n");
|
||||
return ACK_ERROR_ARG;
|
||||
@ -2103,7 +2103,7 @@ mpd_command_listplaylistinfo(struct evbuffer *evbuf, int argc, char **argv, char
|
||||
|
||||
if (argc < 2)
|
||||
{
|
||||
ret = asprintf(errmsg, "Missing argument for command 'load'");
|
||||
ret = asprintf(errmsg, "Missing argument for command 'listplaylistinfo'");
|
||||
if (ret < 0)
|
||||
DPRINTF(E_LOG, L_MPD, "Out of memory\n");
|
||||
return ACK_ERROR_ARG;
|
||||
|
Loading…
Reference in New Issue
Block a user