Fixed compile error when queue feature is disabled.
authorDaniel Carl <danielcarl@gmx.de>
Mon, 5 Jan 2015 22:50:13 +0000 (23:50 +0100)
committerDaniel Carl <danielcarl@gmx.de>
Mon, 5 Jan 2015 22:50:13 +0000 (23:50 +0100)
src/normal.c

index 10236c7..fa9ddfd 100644 (file)
@@ -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;
 }