From: Daniel Carl Date: Mon, 5 Jan 2015 22:50:13 +0000 (+0100) Subject: Fixed compile error when queue feature is disabled. X-Git-Url: https://git.owens.tech/assets/static/git.owens.tech/assets/static/git.owens.tech/git?a=commitdiff_plain;h=3c27ff5b76930023e5af6be233a54e8a9111f4f8;p=vimb.git Fixed compile error when queue feature is disabled. --- diff --git a/src/normal.c b/src/normal.c index 10236c7..fa9ddfd 100644 --- a/src/normal.c +++ b/src/normal.c @@ -630,7 +630,9 @@ static VbResult normal_prevnext(const NormalCmdInfo *info) static VbResult normal_queue(const NormalCmdInfo *info) { +#ifdef FEATURE_QUEUE command_queue(&((Arg){COMMAND_QUEUE_POP})); +#endif return RESULT_COMPLETE; }