Skip to content
Snippets Groups Projects
Commit 6c462e06 authored by patacongo's avatar patacongo
Browse files

Should use bdbg, not dbg

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2393 42af7a65-404d-4744-a932-0658087f49c3
parent 7d63ffbf
No related branches found
No related tags found
No related merge requests found
......@@ -139,7 +139,7 @@ int exec_module(FAR const struct binary_s *bin, int priority)
if (ret < 0)
{
err = errno;
dbg("task_init() failed: %d\n", err);
bdbg("task_init() failed: %d\n", err);
goto errout_with_stack;
}
......@@ -163,7 +163,7 @@ int exec_module(FAR const struct binary_s *bin, int priority)
if (ret < 0)
{
err = errno;
dbg("task_activate() failed: %d\n", err);
bdbg("task_activate() failed: %d\n", err);
goto errout_with_stack;
}
return (int)pid;
......@@ -182,7 +182,7 @@ errout_with_tcb:
free(tcb);
errout:
errno = err;
dbg("returning errno: %d\n", err);
bdbg("returning errno: %d\n", err);
return ERROR;
}
......
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