summaryrefslogtreecommitdiff
path: root/nuttx/sched/gmtime_r.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-11-23 22:32:52 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-11-23 22:32:52 +0000
commit2937aaaaf09c2f0d5b46b1a2a30eac962d8455d3 (patch)
tree4c931c8603e4c674f6eec802044b430a953536db /nuttx/sched/gmtime_r.c
parentfa64306fac12fed8522ab0facdb2cd7f211b2d30 (diff)
downloadpx4-nuttx-2937aaaaf09c2f0d5b46b1a2a30eac962d8455d3.tar.gz
px4-nuttx-2937aaaaf09c2f0d5b46b1a2a30eac962d8455d3.tar.bz2
px4-nuttx-2937aaaaf09c2f0d5b46b1a2a30eac962d8455d3.zip
Debug can now be selectively enabled by subystem
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@404 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/gmtime_r.c')
-rw-r--r--nuttx/sched/gmtime_r.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/sched/gmtime_r.c b/nuttx/sched/gmtime_r.c
index bf9923bb3..98658676e 100644
--- a/nuttx/sched/gmtime_r.c
+++ b/nuttx/sched/gmtime_r.c
@@ -177,7 +177,7 @@ struct tm *gmtime_r(const time_t *clock, struct tm *result)
/* Get the seconds since the EPOCH */
time = *clock;
- dbg("clock=%d\n", (int)time);
+ sdbg("clock=%d\n", (int)time);
/* Convert to days, hours, minutes, and seconds since the EPOCH */
@@ -192,15 +192,15 @@ struct tm *gmtime_r(const time_t *clock, struct tm *result)
sec = time;
- dbg("hour=%d min=%d sec=%d\n",
- (int)hour, (int)min, (int)sec);
+ sdbg("hour=%d min=%d sec=%d\n",
+ (int)hour, (int)min, (int)sec);
/* Convert the days since the EPOCH to calendar day */
clock_utc2calendar(jdn, &year, &month, &day);
- dbg("jdn=%d year=%d month=%d day=%d\n",
- (int)jdn, (int)year, (int)month, (int)day);
+ sdbg("jdn=%d year=%d month=%d day=%d\n",
+ (int)jdn, (int)year, (int)month, (int)day);
/* Then return the struct tm contents */