Skip to content
Snippets Groups Projects
Commit 166d46a8 authored by Gregory Nutt's avatar Gregory Nutt
Browse files

Fix error in new macro definition that causes compile problem when not using a kernel-mode build

parent aa55cc36
No related branches found
No related tags found
No related merge requests found
......@@ -186,9 +186,9 @@ void group_free(FAR struct task_group_s *group, FAR void *mem);
* in privileges.
*/
# define group_malloc(g,n) kumm_malloc(size)
# define group_zalloc(g,n) kumm_zalloc(size)
# define group_free(g,m) kumm_free(size)
# define group_malloc(g,n) kumm_malloc(n)
# define group_zalloc(g,n) kumm_zalloc(n)
# define group_free(g,m) kumm_free(m)
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment