summaryrefslogtreecommitdiffstats
path: root/cli/src
diff options
context:
space:
mode:
authorSachin Pandit <spandit@redhat.com>2013-11-05 15:30:28 +0000
committershishir gowda <sgowda@redhat.com>2013-11-15 14:45:14 +0530
commitdd0a6079c23e628b19d23c6fa9d886a798626aa8 (patch)
tree507314c2c581721ce7aee08eb7c562a49e0a383d /cli/src
parent4e8beadcd2e271ab8eaf65f8a18548d6b721a885 (diff)
cli/snapshot : Minox fix, string literal.
Change-Id: I2a0b7e244256f1df82beb3e4815d6cacfee50603 Signed-off-by: Sachin Pandit <spandit@redhat.com>
Diffstat (limited to 'cli/src')
-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 fe08a3b95..c625cc955 100644
--- a/cli/src/cli-rpc-ops.c
+++ b/cli/src/cli-rpc-ops.c
@@ -7561,7 +7561,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;
}