Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libcdi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mpim-sw
libcdi
Commits
ef4050f8
Commit
ef4050f8
authored
1 year ago
by
Daniel Reinert
Browse files
Options
Downloads
Patches
Plain Diff
apply fix suggested by Sergey
parent
6aded507
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#34749
failed
1 month ago
Stage: external
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/julian_date.c
+2
-1
2 additions, 1 deletion
src/julian_date.c
with
2 additions
and
1 deletion
src/julian_date.c
+
2
−
1
View file @
ef4050f8
...
...
@@ -104,7 +104,8 @@ secofday_decode(double secondOfDay)
{
CdiTime
time
;
const
int
fullSeconds
=
(
int
)
secondOfDay
;
// const int fullSeconds = (int) secondOfDay;
const
int
fullSeconds
=
(
long
)
secondOfDay
;
time
.
ms
=
(
int
)
lround
((
secondOfDay
-
fullSeconds
)
*
1000
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment