s, not ms

This commit is contained in:
Yuxuan Shui 2022-09-26 11:03:46 +01:00
parent 5e2735f40b
commit ce9a41a7c2
No known key found for this signature in database
GPG Key ID: D3A4405BE6CC17F4
1 changed files with 2 additions and 2 deletions

View File

@ -649,8 +649,8 @@ bool x_fence_sync(xcb_connection_t *c, xcb_sync_fence_t f) {
}
struct timespec ts2 = {0};
clock_gettime(CLOCK_MONOTONIC, &ts2);
log_warn("x_fence_sync: %lf ms", (double)(ts2.tv_sec - ts.tv_sec) +
(double)(ts2.tv_nsec - ts.tv_nsec) / 1e9);
log_warn("x_fence_sync: %lf s", (double)(ts2.tv_sec - ts.tv_sec) +
(double)(ts2.tv_nsec - ts.tv_nsec) / 1e9);
return true;
err: