From 3c27ff5b76930023e5af6be233a54e8a9111f4f8 Mon Sep 17 00:00:00 2001
From: Daniel Carl <danielcarl@gmx.de>
Date: Mon, 5 Jan 2015 23:50:13 +0100
Subject: [PATCH] Fixed compile error when queue feature is disabled.

---
 src/normal.c | 2 ++
 1 file changed, 2 insertions(+)

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;
 }
 
-- 
2.20.1