Skip to content

Commit

Permalink
Call correct time function
Browse files Browse the repository at this point in the history
  • Loading branch information
joakim-hove committed Sep 4, 2019
1 parent e242957 commit 24d90d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ecl/ecl_util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1511,7 +1511,7 @@ void ecl_util_set_date_values(time_t t , int * mday , int * month , int * year)
}

void ecl_util_set_datetime_values(time_t t , int * sec, int * min, int * hour, int * mday , int * month , int * year) {
return util_set_date_values_utc(t,mday,month,year);
return util_set_datetime_values_utc(t,sec,min,hour,mday,month,year);
}


Expand Down

0 comments on commit 24d90d4

Please sign in to comment.