rename: os_get_localtime => os_localtime

This commit is contained in:
Justin M. Keyes
2018-07-11 22:20:32 +02:00
parent 72ddbb675f
commit ddea519542
2 changed files with 3 additions and 3 deletions

View File

@@ -262,7 +262,7 @@ static bool v_do_log_to_file(FILE *log_file, int log_level,
// format current timestamp in local time
struct tm local_time;
if (os_get_localtime(&local_time) == NULL) {
if (os_localtime(&local_time) == NULL) {
return false;
}
char date_time[20];