You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by da...@apache.org on 2020/09/20 09:32:36 UTC

[incubator-nuttx] branch master updated: sched: Fix nuttx typo

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 <ch...@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); */