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

Add static declaration to internal function splitTimevalue.

parent 8d359fea
No related branches found
No related tags found
No related merge requests found
......@@ -1177,7 +1177,8 @@ void conv_timeval(double timevalue, int *rvdate, int *rvtime)
}
void splitTimevalue(double timevalue, int timeunit, int *date, int *time)
static void
splitTimevalue(double timevalue, int timeunit, int *date, int *time)
{
int vdate = 0, vtime = 0;
int hour, minute, second;
......
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