diff options
author | Hu Tao <hutao@cn.fujitsu.com> | 2014-06-20 13:55:42 +0800 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2014-06-23 17:38:00 +0300 |
commit | 684531ad1f69feb1288b9813c3eb47fba992ea96 (patch) | |
tree | d99ec19ff5f9d493ab02fc2a1eddc89b0a06ad04 /qapi | |
parent | d7a4155265416a1c8f3067b59e68bf5fda1d6215 (diff) | |
download | qemu-684531ad1f69feb1288b9813c3eb47fba992ea96.zip |
qapi/string-output-visitor: fix human output
"0x1-0x10" looks better than "0x1-10"
Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r-- | qapi/string-output-visitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qapi/string-output-visitor.c b/qapi/string-output-visitor.c index e9aca3bfdc..1ab8574585 100644 --- a/qapi/string-output-visitor.c +++ b/qapi/string-output-visitor.c @@ -98,7 +98,7 @@ static void format_string(StringOutputVisitor *sov, Range *r, bool next, { if (r->end - r->begin > 1) { if (human) { - g_string_append_printf(sov->string, "0x%" PRIx64 "-%" PRIx64, + g_string_append_printf(sov->string, "0x%" PRIx64 "-0x%" PRIx64, r->begin, r->end - 1); } else { |