apps/system/system.c: Fix warning when passing argument 6 of 'task_spawn' from incompatible pointer type [-Wincompatible-pointer-types]

This commit is contained in:
Xiang Xiao 2018-11-07 11:37:00 -06:00 committed by Gregory Nutt
parent 2d4df65040
commit 4804d74c61

View File

@ -74,7 +74,7 @@
int system(FAR const char *cmd)
{
FAR const char *argv[2];
FAR char *argv[2];
struct sched_param param;
posix_spawnattr_t attr;
pid_t pid;
@ -141,7 +141,7 @@ int system(FAR const char *cmd)
/* Spawn nsh_system() which will execute the command under the shell. */
argv[0] = cmd;
argv[0] = (FAR char *)cmd;
argv[1] = NULL;
#ifdef CONFIG_BUILD_LOADABLE