compiler/blob: Constify the reader

Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
This commit is contained in:
Jason Ekstrand
2017-10-11 12:09:02 -07:00
parent 3af1c82989
commit 4d56ff0a71
3 changed files with 11 additions and 11 deletions

View File

@@ -83,7 +83,7 @@ expect_equal_str(const char *expected, const char *actual, const char *test)
}
static void
expect_equal_bytes(uint8_t *expected, uint8_t *actual,
expect_equal_bytes(uint8_t *expected, const uint8_t *actual,
size_t num_bytes, const char *test)
{
size_t i;