Skip to content

Commit da41b22

Browse files
committed
Upstream: Apparently, somehow, we added some newlines
1 parent ecb2195 commit da41b22

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test-runner/bin/test-runner.py.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,12 @@ class timespec(ctypes.Structure):
5858
('tv_nsec', ctypes.c_long)
5959
]
6060

61+
6162
librt = ctypes.CDLL('librt.so.1', use_errno=True)
6263
clock_gettime = librt.clock_gettime
6364
clock_gettime.argtypes = [ctypes.c_int, ctypes.POINTER(timespec)]
6465

66+
6567
def monotonic_time():
6668
t = timespec()
6769
if clock_gettime(CLOCK_MONOTONIC_RAW, ctypes.pointer(t)) != 0:

0 commit comments

Comments
 (0)