File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -534,7 +534,7 @@ _PyTime_AsTimespec(_PyTime_t t, struct timespec *ts)
534534#endif
535535
536536static int
537- pygettimeofday_new (_PyTime_t * tp , _Py_clock_info_t * info , int raise )
537+ pygettimeofday (_PyTime_t * tp , _Py_clock_info_t * info , int raise )
538538{
539539#ifdef MS_WINDOWS
540540 FILETIME system_time ;
@@ -626,7 +626,7 @@ _PyTime_t
626626_PyTime_GetSystemClock (void )
627627{
628628 _PyTime_t t ;
629- if (pygettimeofday_new (& t , NULL , 0 ) < 0 ) {
629+ if (pygettimeofday (& t , NULL , 0 ) < 0 ) {
630630 /* should not happen, _PyTime_Init() checked the clock at startup */
631631 assert (0 );
632632
@@ -639,7 +639,7 @@ _PyTime_GetSystemClock(void)
639639int
640640_PyTime_GetSystemClockWithInfo (_PyTime_t * t , _Py_clock_info_t * info )
641641{
642- return pygettimeofday_new (t , info , 1 );
642+ return pygettimeofday (t , info , 1 );
643643}
644644
645645static int
You can’t perform that action at this time.
0 commit comments