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