ext/libuv/src/unix/openbsd.c in libuv-0.10.2 vs ext/libuv/src/unix/openbsd.c in libuv-0.10.3

- old
+ new

@@ -54,10 +54,10 @@ void uv__platform_loop_delete(uv_loop_t* loop) { } -uint64_t uv__hrtime(void) { +uint64_t uv__hrtime(uv_clocktype_t type) { struct timespec ts; clock_gettime(CLOCK_MONOTONIC, &ts); return (((uint64_t) ts.tv_sec) * NANOSEC + ts.tv_nsec); }