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:
parent
2d37de773c
commit
4348f0d135
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue