Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: nvtool/tpm_nv.c

Issue 3844005: Fix wrong format for printing TPM NV space indices. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/tpm.git
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nvtool/tpm_nv.c
diff --git a/nvtool/tpm_nv.c b/nvtool/tpm_nv.c
index 2e6c270146ccff974f775d6e0d742a70000fba7a..a5fecd2a807221d04e6ba852f4307e5fa2a459ac 100644
--- a/nvtool/tpm_nv.c
+++ b/nvtool/tpm_nv.c
@@ -72,7 +72,7 @@ tnv_print_nv_data_public(UINT32 nvIndex, UINT32 dataLength, BYTE* data)
return FALSE;
}
- TNV_stdout("# NV Index %#08x\n", value32);
+ TNV_stdout("# NV Index %#010x\n", value32);
cursor += sizeof(UINT32);
// pcrInfoRead begin
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698