apps/nshlib: fix CI error

Error: /home/runner/work/incubator-nuttx-apps/incubator-nuttx-apps/apps/nshlib/nsh_proccmds.c:574:40: error: Operator/assignment must be preceded with whitespace
Error: Process completed with exit code 1.

Signed-off-by: Junbo Zheng <zhengjunbo1@xiaomi.com>
This commit is contained in:
Junbo Zheng 2022-09-19 19:29:57 +08:00 committed by Petro Karashchenko
parent 06f39d10f1
commit 45ef7f948f

View File

@ -571,7 +571,7 @@ int cmd_exec(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv)
return ERROR;
}
nsh_output(vtbl, "Calling %p\n", (void*)addr);
nsh_output(vtbl, "Calling %p\n", (void *)addr);
return ((exec_t)addr)();
}
#endif