Should use bdbg, not dbg

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2393 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2009-12-20 13:34:49 +00:00
parent 7d63ffbf72
commit 6c462e063e
+3 -3
View File
@@ -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;
}