mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
test: fix Windows compiler warnings in overlapped-checker
Fixes two warnings: - test\overlapped-checker\main_win.c(37,25): warning : format specifies type 'int' but the argument has type 'DWORD' (aka 'unsigned long') [-Wformat] - test\overlapped-checker\main_win.c(9,14): warning : unused variable 'write_count' [-Wunused-variable] PR-URL: https://github.com/nodejs/node/pull/52405 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
This commit is contained in:
@@ -6,7 +6,6 @@
|
||||
|
||||
static char buf[256];
|
||||
static DWORD read_count;
|
||||
static DWORD write_count;
|
||||
static HANDLE stdin_h;
|
||||
static OVERLAPPED stdin_o;
|
||||
|
||||
@@ -34,7 +33,7 @@ static void write(const char* buf, size_t buf_size) {
|
||||
if (!WriteFile(stdout_h, buf, buf_size, &write_count, NULL)) {
|
||||
die("overlapped write failed");
|
||||
}
|
||||
fprintf(stderr, "%d", write_count);
|
||||
fprintf(stderr, "%ld", write_count);
|
||||
fflush(stderr);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user