summaryrefslogtreecommitdiff
path: root/demos/host/src/cli.c
diff options
context:
space:
mode:
authorhathach <[email protected]>2014-01-24 21:51:24 +0700
committerhathach <[email protected]>2014-01-24 21:51:24 +0700
commita982a52ab39f4b3fa5b678a8aabba2f66f25518e (patch)
tree27dd5eda7e69769c6917636afbb191d1d078701f /demos/host/src/cli.c
parent275e834bbed4928094b0a631c7dd36fdcc0b40fe (diff)
refractor __n2be_16
Diffstat (limited to 'demos/host/src/cli.c')
-rw-r--r--demos/host/src/cli.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/demos/host/src/cli.c b/demos/host/src/cli.c
index a9bef79a4..8816d43ba 100644
--- a/demos/host/src/cli.c
+++ b/demos/host/src/cli.c
@@ -88,7 +88,7 @@ static char const * const cli_error_message[] =
// Expands the function to have the standard function signature
//--------------------------------------------------------------------+
#define CLI_PROTOTYPE_EXPAND(command, function, description) \
- cli_error_t function(char *);
+ cli_error_t function(char * p_para);
CLI_COMMAND_TABLE(CLI_PROTOTYPE_EXPAND);
@@ -108,7 +108,6 @@ typedef enum {
char const* const cli_string_tbl[] =
{
CLI_COMMAND_TABLE(CLI_STRING_EXPAND)
- 0
};
//--------------------------------------------------------------------+
@@ -118,7 +117,6 @@ char const* const cli_string_tbl[] =
char const* const cli_description_tbl[] =
{
CLI_COMMAND_TABLE(CLI_DESCRIPTION_EXPAND)
- 0
};