From 56e3b1c8b234dbde84e092e3edc654913f6410b2 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Thu, 4 Feb 2010 16:31:55 +0000 Subject: [PATCH 1/1] hivexsh: lsval: Remove stray quotation mark. --- hivex/hivexsh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hivex/hivexsh.c b/hivex/hivexsh.c index 39ca634..1bd3b8b 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; } -- 1.8.3.1