1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00

The command name is a constant, use the correct type.

MFC after:	1 week
This commit is contained in:
Andrew Turner 2014-10-31 18:35:03 +00:00
parent a7ac719d30
commit 85462455a5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=273914

View File

@ -93,9 +93,9 @@ static int fdt_cmd_mres(int argc, char *argv[]);
typedef int cmdf_t(int, char *[]);
struct cmdtab {
char *name;
cmdf_t *handler;
int flags;
const char *name;
cmdf_t *handler;
int flags;
};
static const struct cmdtab commands[] = {