[libvirt] [PATCH 1/3] vsh: Mark cmdComplete arguments as unused

Michal Privoznik mprivozn at redhat.com
Sun Jan 14 13:46:43 UTC 2018


When building without readline, this function does nothing but
return false. Without touching any of its arguments. Therefore,
we have to mark them as unused even though they might be used
when building with readline support.

Signed-off-by: Michal Privoznik <mprivozn at redhat.com>
---
 tools/vsh.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/vsh.c b/tools/vsh.c
index 4426c08d6..88561ef61 100644
--- a/tools/vsh.c
+++ b/tools/vsh.c
@@ -3500,7 +3500,8 @@ const vshCmdInfo info_complete[] = {
 };
 
 bool
-cmdComplete(vshControl *ctl, const vshCmd *cmd)
+cmdComplete(vshControl *ctl ATTRIBUTE_UNUSED,
+            const vshCmd *cmd ATTRIBUTE_UNUSED)
 {
     bool ret = false;
 #ifdef WITH_READLINE
-- 
2.13.6




More information about the libvir-list mailing list