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

Unified Diff: src/platform/vboot_reference/tests/sha_benchmark.c

Issue 744002: Vboot Reference: Make length types explicitly sized. (Closed)
Patch Set: Created 10 years, 9 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
Index: src/platform/vboot_reference/tests/sha_benchmark.c
diff --git a/src/platform/vboot_reference/tests/sha_benchmark.c b/src/platform/vboot_reference/tests/sha_benchmark.c
index 498e25b8e098ffa11376eb2b91badc0889c32445..b36695b527f43d40b73d3ad1e6145718603e2ada 100644
--- a/src/platform/vboot_reference/tests/sha_benchmark.c
+++ b/src/platform/vboot_reference/tests/sha_benchmark.c
@@ -14,7 +14,7 @@
#define TEST_BUFFER_SIZE 4000000
/* Table of hash function pointers and their description. */
-typedef uint8_t* (*Hashptr) (const uint8_t*, int, uint8_t*);
+typedef uint8_t* (*Hashptr) (const uint8_t*, uint64_t, uint8_t*);
typedef struct HashFxTable {
Hashptr hash;
char* description;

Powered by Google App Engine
This is Rietveld 408576698