This is an automated email from the ASF dual-hosted git repository. davids5 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
The following commit(s) were added to refs/heads/master by this push: new 2903055 sched: Fix nuttx typo 2903055 is described below commit 29030557ff66f9dbac6ade19e1e6e5d8873c48f6 Author: licheng <chen...@bestechnic.com> AuthorDate: Thu Aug 20 20:53:16 2020 +0800 sched: Fix nuttx typo --- include/sched.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sched.h b/include/sched.h index 77bb497..250b658 100644 --- a/include/sched.h +++ b/include/sched.h @@ -122,7 +122,7 @@ /* void CPU_FREE(cpu_set_t *set); */ -# define CPU_ALLOC(s) free(s) +# define CPU_FREE(s) free(s) /* size_t CPU_ALLOC_SIZE(int num_cpus); */