Skip to content

Commit

Permalink
libdevs: fix compiler warning
Browse files Browse the repository at this point in the history
Warning:
libdevs.c:26:19: warning: duplicate ‘const’ declaration specifier [-Wduplicate-decl-specifier]
 static const char const *ftype_to_name[FKTY_MAX] = {
                   ^~~~~
  • Loading branch information
AltraMayor committed Dec 10, 2018
1 parent 381d860 commit 7ff9fad
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 const *ftype_to_name[FKTY_MAX] = {
static const char *ftype_to_name[FKTY_MAX] = {
[FKTY_GOOD] = "good",
[FKTY_BAD] = "bad",
[FKTY_LIMBO] = "limbo",
Expand Down

0 comments on commit 7ff9fad

Please sign in to comment.