File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -449,7 +449,7 @@ _PyTime_AsTimespec(_PyTime_t t, struct timespec *ts)
449449#endif
450450
451451static int
452- pygettimeofday_new (_PyTime_t * tp , _Py_clock_info_t * info , int raise )
452+ pygettimeofday (_PyTime_t * tp , _Py_clock_info_t * info , int raise )
453453{
454454#ifdef MS_WINDOWS
455455 FILETIME system_time ;
@@ -541,7 +541,7 @@ _PyTime_t
541541_PyTime_GetSystemClock (void )
542542{
543543 _PyTime_t t ;
544- if (pygettimeofday_new (& t , NULL , 0 ) < 0 ) {
544+ if (pygettimeofday (& t , NULL , 0 ) < 0 ) {
545545 /* should not happen, _PyTime_Init() checked the clock at startup */
546546 assert (0 );
547547
@@ -554,7 +554,7 @@ _PyTime_GetSystemClock(void)
554554int
555555_PyTime_GetSystemClockWithInfo (_PyTime_t * t , _Py_clock_info_t * info )
556556{
557- return pygettimeofday_new (t , info , 1 );
557+ return pygettimeofday (t , info , 1 );
558558}
559559
560560
You can’t perform that action at this time.
0 commit comments