Skip to content
Snippets Groups Projects
Commit 3eb99160 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Fix implicit conversions in julday_sub.

parent 9f274113
No related branches found
No related tags found
No related merge requests found
......@@ -194,9 +194,9 @@ double julday_sub(int julday1, int secofday1, int julday2, int secofday2, int *d
*secs = (int) sec_of_day;
seconds = *days*86400. + sec_of_day;
seconds = *days * 86400 + sec_of_day;
return (seconds);
return (double)seconds;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment