summaryrefslogtreecommitdiff
path: root/src/helper
diff options
context:
space:
mode:
Diffstat (limited to 'src/helper')
-rw-r--r--src/helper/bin2char.c2
-rw-r--r--src/helper/command.c2
-rw-r--r--src/helper/command.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/helper/bin2char.c b/src/helper/bin2char.c
index 5bb4a6de..a214b63e 100644
--- a/src/helper/bin2char.c
+++ b/src/helper/bin2char.c
@@ -29,7 +29,7 @@ int main(int argc, char **argv)
{
int c;
unsigned int n;
- char *name;
+ const char *name;
if (argc == 1) {
fprintf(stderr, "bin2char <varname>\n");
diff --git a/src/helper/command.c b/src/helper/command.c
index fd5e5f94..d5ac34b4 100644
--- a/src/helper/command.c
+++ b/src/helper/command.c
@@ -310,7 +310,7 @@ static void command_free(struct command *c)
}
if (c->name)
- free(c->name);
+ free((void *)c->name);
if (c->help)
free((void*)c->help);
if (c->usage)
diff --git a/src/helper/command.h b/src/helper/command.h
index 0ee66b09..3d1cdec8 100644
--- a/src/helper/command.h
+++ b/src/helper/command.h
@@ -173,7 +173,7 @@ typedef __COMMAND_HANDLER((*command_handler_t));
struct command
{
- char *name;
+ const char *name;
const char *help;
const char *usage;
struct command *parent;