From 4cd5ac404102fadcf4e91fc0123b86a4473e0685 Mon Sep 17 00:00:00 2001 From: patacongo Date: Thu, 7 Jul 2011 21:55:16 +0000 Subject: [PATCH] Fix some typos in comments git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3752 42af7a65-404d-4744-a932-0658087f49c3 --- lib/time/lib_time.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/time/lib_time.c b/lib/time/lib_time.c index 0ddd7993ff..02853132b0 100644 --- a/lib/time/lib_time.c +++ b/lib/time/lib_time.c @@ -100,8 +100,9 @@ time_t time(time_t *tloc) { *tloc = tp.tv_sec; } + return tp.tv_sec; - } + } return (time_t)ERROR; }