Skip to content

Commit

Permalink
Fix format specifier for DWORD
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed May 9, 2024
1 parent d224bfd commit d656461
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io_buffer.c
Expand Up @@ -260,7 +260,7 @@ io_buffer_free(struct rb_io_buffer *buffer)
if (buffer->mapping) {
if (RB_IO_BUFFER_DEBUG) fprintf(stderr, "io_buffer_free:CloseHandle -> %p\n", buffer->mapping);
if (!CloseHandle(buffer->mapping)) {
fprintf(stderr, "io_buffer_free:GetLastError -> %d\n", GetLastError());
fprintf(stderr, "io_buffer_free:GetLastError -> %lu\n", GetLastError());
}
buffer->mapping = NULL;
}
Expand Down

0 comments on commit d656461

Please sign in to comment.