summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSachin Pandit <spandit@redhat.com>2013-11-05 15:30:28 +0000
committerSachin Pandit <spandit@redhat.com>2013-11-05 15:32:58 +0000
commit533d29e5d2d5afc80f927d1f37dce3bd352a5efd (patch)
treed8af3e594a1b674f3db4687f2f692b7eb41ba32a
parent045b1058c01ae0dbbda2dac508e8ced91b1c1734 (diff)
cli/snapshot : Minox fix, string literal.
Change-Id: I2a0b7e244256f1df82beb3e4815d6cacfee50603 Signed-off-by: Sachin Pandit <spandit@redhat.com>
-rw-r--r--cli/src/cli-rpc-ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/src/cli-rpc-ops.c b/cli/src/cli-rpc-ops.c
index fa77f1a14..450ad6661 100644
--- a/cli/src/cli-rpc-ops.c
+++ b/cli/src/cli-rpc-ops.c
@@ -7434,7 +7434,7 @@ list_snap_of_volume (dict_t *dict_n, char *prefix_str) {
}
ret = dict_get_str (dict_n, buffer, &get_buffer);
if (ret == 0) {
- cli_out (get_buffer);
+ cli_out ("%s",get_buffer);
ret = 0;
goto out;
}