Skip to content

Commit

Permalink
Add a missing semicolon in src/io.c.
Browse files Browse the repository at this point in the history
  • Loading branch information
allevato authored Mar 28, 2024
1 parent 292273a commit a056677
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 a056677

Please sign in to comment.