diff options
Diffstat (limited to 'src/ctx.c')
-rw-r--r-- | src/ctx.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,7 @@ struct bfs_ctx *bfs_ctx_new(void) { goto fail; } - if (xgettime(&ctx->now) != 0) { + if (clock_gettime(CLOCK_REALTIME, &ctx->now) != 0) { goto fail; } |