Fixed double const.

The way the const pointer was written caused at least the clang compiler
to complain about double cosnst. I am not sure if the way it was written
before it resulted in the intended "make everything const" goal. But the
way it is written now it adheres to the right to left reading rule.
This commit is contained in:
Piotr Esden-Tempski 2016-10-19 14:37:03 -07:00
parent 2d37de773c
commit 4348f0d135
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ enum cid_class {
#ifdef PLATFORM_HAS_DEBUG
/* The reserved ones only have an R in them, to save a bit of space. */
static const char const *cidc_debug_strings[] =
static const char * const cidc_debug_strings[] =
{
[cidc_gvc] = "Generic verification component", /* 0x0 */
[cidc_romtab] = "ROM Table", /* 0x1 */