Skip to content

Commit 1897407

Browse files
authored
Merge pull request #822 from allevato/patch-1
Add a missing semicolon in src/io.c.
2 parents 292273a + a056677 commit 1897407

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/io.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2374,7 +2374,7 @@ _dispatch_operation_perform(dispatch_operation_t op)
23742374
}
23752375
op->buf = _aligned_malloc(op->buf_siz, siInfo.dwPageSize);
23762376
#else
2377-
op->buf = aligned_alloc((size_t)PAGE_SIZE, op->buf_siz)
2377+
op->buf = aligned_alloc((size_t)PAGE_SIZE, op->buf_siz);
23782378
#endif
23792379
_dispatch_op_debug("buffer allocated", op);
23802380
} else if (op->direction == DOP_DIR_WRITE) {

0 commit comments

Comments
 (0)