Skip to content
Commit 17974c05 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

hexdump: avoid warning in test function



The test_data_1_le[] array is a const array of const char *.  To avoid
dropping any const information, we need to use "const char * const *",
not just "const char **".

I'm not sure why the different test arrays end up having different
const'ness, but let's make the pointer we use to traverse them as const
as possible, since we modify neither the array of pointers _or_ the
pointers we find in the array.

Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 8b01fc86
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment