From fd620aeefd4a4b5b0cf29dab28996ce35f834283 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sun, 20 Dec 2009 13:34:49 +0000 Subject: Should use bdbg, not dbg git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2393 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/binfmt/binfmt_execmodule.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'nuttx/binfmt') diff --git a/nuttx/binfmt/binfmt_execmodule.c b/nuttx/binfmt/binfmt_execmodule.c index 6c8dd37f3..1965f6fa0 100644 --- a/nuttx/binfmt/binfmt_execmodule.c +++ b/nuttx/binfmt/binfmt_execmodule.c @@ -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; } -- cgit v1.2.3