From 9544c29043dbb090da9e526825bf1fd9110f656c Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 6 Sep 2014 09:23:23 -0600 Subject: Use more standard *argv[] instead easier **argv --- apps/system/hex2bin/hex2bin_main.c | 2 +- apps/system/hex2bin/hex2mem_main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/system/hex2bin') diff --git a/apps/system/hex2bin/hex2bin_main.c b/apps/system/hex2bin/hex2bin_main.c index b35ecca19..f3acc44cd 100644 --- a/apps/system/hex2bin/hex2bin_main.c +++ b/apps/system/hex2bin/hex2bin_main.c @@ -118,7 +118,7 @@ static void show_usage(FAR const char *progname, int exitcode) ****************************************************************************/ #ifdef CONFIG_BUILD_KERNEL -int main(int argc, FAR char **argv) +int main(int argc, FAR char *argv[]) #else int hex2bin_main(int argc, char **argv) #endif diff --git a/apps/system/hex2bin/hex2mem_main.c b/apps/system/hex2bin/hex2mem_main.c index 39560055a..03feb1ea9 100644 --- a/apps/system/hex2bin/hex2mem_main.c +++ b/apps/system/hex2bin/hex2mem_main.c @@ -113,7 +113,7 @@ static void show_usage(FAR const char *progname, int exitcode) ****************************************************************************/ #ifdef CONFIG_BUILD_KERNEL -int main(int argc, FAR char **argv) +int main(int argc, FAR char *argv[]) #else int hex2mem_main(int argc, char **argv) #endif -- cgit v1.2.3