File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -531,7 +531,7 @@ _PyTime_GetSystemClockWithInfo(_PyTime_t *t, _Py_clock_info_t *info)
531531
532532
533533static int
534- pymonotonic_new (_PyTime_t * tp , _Py_clock_info_t * info , int raise )
534+ pymonotonic (_PyTime_t * tp , _Py_clock_info_t * info , int raise )
535535{
536536#if defined(MS_WINDOWS )
537537 ULONGLONG result ;
@@ -631,7 +631,7 @@ _PyTime_t
631631_PyTime_GetMonotonicClock (void )
632632{
633633 _PyTime_t t ;
634- if (pymonotonic_new (& t , NULL , 0 ) < 0 ) {
634+ if (pymonotonic (& t , NULL , 0 ) < 0 ) {
635635 /* should not happen, _PyTime_Init() checked that monotonic clock at
636636 startup */
637637 assert (0 );
@@ -645,7 +645,7 @@ _PyTime_GetMonotonicClock(void)
645645int
646646_PyTime_GetMonotonicClockWithInfo (_PyTime_t * tp , _Py_clock_info_t * info )
647647{
648- return pymonotonic_new (tp , info , 1 );
648+ return pymonotonic (tp , info , 1 );
649649}
650650
651651int
You can’t perform that action at this time.
0 commit comments