Skip to content

Commit

Permalink
Merge pull request #822 from allevato/patch-1
Browse files Browse the repository at this point in the history
Add a missing semicolon in src/io.c.
  • Loading branch information
compnerd authored Mar 28, 2024
2 parents 292273a + a056677 commit 1897407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 1897407

Please sign in to comment.