ap

An audio player suited to my tastes
Log | Files | Refs | README | LICENSE

commit 7f0e2e84023c50c464f5de28a3ec3ca32ab9483a
parent 1e5626bd46b11522dcaf048d32e9d42bde004d41
Author: Jacob R. Edwards <jacobouno@protonmail.com>
Date:   Wed, 14 Jul 2021 17:40:20 -0700

Fix use of the now undefined aps_prev function

Diffstat:
Maps/command.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/aps/command.c b/aps/command.c @@ -267,7 +267,7 @@ aps_command(struct aps *aps, int s) { "next", aps_next }, { "pause", aps_pause }, { "play", aps_play }, - { "previous", aps_prev }, + { "previous", aps_previous }, { "remove", aps_remove }, { "seek", aps_seek }, { "status", aps_status },