diff options
author | Richard Jones <rjones@redhat.com> | 2010-02-04 16:31:55 +0000 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2010-02-04 16:31:55 +0000 |
commit | 3932b383869a1029457fac172827ef2b538d77de (patch) | |
tree | 7485565e752b758791b1908a771eb1ae5c7c9f56 | |
parent | 43504796252dc8c399f490927008fcbf7d97b27b (diff) | |
download | libguestfs-3932b383869a1029457fac172827ef2b538d77de.tar.gz libguestfs-3932b383869a1029457fac172827ef2b538d77de.tar.xz libguestfs-3932b383869a1029457fac172827ef2b538d77de.zip |
hivexsh: lsval: Remove stray quotation mark.
-rw-r--r-- | hivex/hivexsh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hivex/hivexsh.c b/hivex/hivexsh.c index 39ca634a..1bd3b8be 100644 --- a/hivex/hivexsh.c +++ b/hivex/hivexsh.c @@ -784,7 +784,7 @@ cmd_lsval (char *key) case hive_t_dword: case hive_t_dword_be: { int32_t j = hivex_value_dword (h, values[i]); - printf ("dword:%08" PRIx32 "\"", j); + printf ("dword:%08" PRIx32, j); break; } |