From a056677019468268f8731db6ce9fc0c0f25ce42c Mon Sep 17 00:00:00 2001 From: Tony Allevato Date: Thu, 28 Mar 2024 10:37:53 -0400 Subject: [PATCH] Add a missing semicolon in src/io.c. --- src/io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io.c b/src/io.c index 70c6721be..4a2653c84 100644 --- a/src/io.c +++ b/src/io.c @@ -2374,7 +2374,7 @@ _dispatch_operation_perform(dispatch_operation_t op) } op->buf = _aligned_malloc(op->buf_siz, siInfo.dwPageSize); #else - op->buf = aligned_alloc((size_t)PAGE_SIZE, op->buf_siz) + op->buf = aligned_alloc((size_t)PAGE_SIZE, op->buf_siz); #endif _dispatch_op_debug("buffer allocated", op); } else if (op->direction == DOP_DIR_WRITE) {