summaryrefslogtreecommitdiff
path: root/src/cdf_time.c
diff options
context:
space:
mode:
authorChristos Zoulas <christos@zoulas.com>2014-04-17 12:44:01 +0000
committerChristos Zoulas <christos@zoulas.com>2014-04-17 12:44:01 +0000
commitdb776c33ef97beaa73f490c2b13f3cb4077a0379 (patch)
treea4b1d318121a0acf864fce82273da9f9b1ec4ee2 /src/cdf_time.c
parent1878ee9dfefa4adddd15822ade56228b4469228f (diff)
downloadfile-git-db776c33ef97beaa73f490c2b13f3cb4077a0379.tar.gz
kill c99 comments, aix does not like them (Jean-Louis CHARTON)
Diffstat (limited to 'src/cdf_time.c')
-rw-r--r--src/cdf_time.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cdf_time.c b/src/cdf_time.c
index 8f17dd1f..bbf018d0 100644
--- a/src/cdf_time.c
+++ b/src/cdf_time.c
@@ -27,7 +27,7 @@
#include "file.h"
#ifndef lint
-FILE_RCSID("@(#)$File: cdf_time.c,v 1.12 2012/05/15 17:14:36 christos Exp $")
+FILE_RCSID("@(#)$File: cdf_time.c,v 1.13 2014/02/25 20:52:02 christos Exp $")
#endif
#include <time.h>
@@ -117,7 +117,7 @@ cdf_timestamp_to_timespec(struct timespec *ts, cdf_timestamp_t t)
tm.tm_hour = (int)(t % 24);
t /= 24;
- // XXX: Approx
+ /* XXX: Approx */
tm.tm_year = (int)(CDF_BASE_YEAR + (t / 365));
rdays = cdf_getdays(tm.tm_year);