Skip to content

Commit

Permalink
Merge pull request #99 from DEVoytas/add_missing_const
Browse files Browse the repository at this point in the history
libdevs: bring back missing ‘const’ specifier
  • Loading branch information
AltraMayor committed Jan 2, 2019
2 parents 7ff9fad + 3ab5bad commit 1ba78e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libdevs.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include "libutils.h"
#include "libdevs.h"

static const char *ftype_to_name[FKTY_MAX] = {
static const char * const ftype_to_name[FKTY_MAX] = {
[FKTY_GOOD] = "good",
[FKTY_BAD] = "bad",
[FKTY_LIMBO] = "limbo",
Expand Down

0 comments on commit 1ba78e7

Please sign in to comment.