summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2010-02-04 16:31:55 +0000
committerRichard Jones <rjones@redhat.com>2010-02-04 16:31:55 +0000
commit3932b383869a1029457fac172827ef2b538d77de (patch)
tree7485565e752b758791b1908a771eb1ae5c7c9f56
parent43504796252dc8c399f490927008fcbf7d97b27b (diff)
downloadlibguestfs-3932b383869a1029457fac172827ef2b538d77de.tar.gz
libguestfs-3932b383869a1029457fac172827ef2b538d77de.tar.xz
libguestfs-3932b383869a1029457fac172827ef2b538d77de.zip
hivexsh: lsval: Remove stray quotation mark.
-rw-r--r--hivex/hivexsh.c2
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;
}