aboutsummaryrefslogtreecommitdiff
path: root/src/jtag/aice/aice_pipe.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/jtag/aice/aice_pipe.c')
-rw-r--r--src/jtag/aice/aice_pipe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jtag/aice/aice_pipe.c b/src/jtag/aice/aice_pipe.c
index 44eade2d..3180ad00 100644
--- a/src/jtag/aice/aice_pipe.c
+++ b/src/jtag/aice/aice_pipe.c
@@ -47,7 +47,7 @@ static int aice_pipe_write(const void *buffer, int count)
success = WriteFile(aice_pipe_output[1], buffer, count, &written, NULL);
if (!success) {
- LOG_ERROR("(WIN32) write to pipe failed, error code: 0x%08lx", GetLastError());
+ LOG_ERROR("(WIN32) write to pipe failed, error code: 0x%08l" PRIx32, GetLastError());
return -1;
}
@@ -61,7 +61,7 @@ static int aice_pipe_read(void *buffer, int count)
success = ReadFile(aice_pipe_input[0], buffer, count, &has_read, NULL);
if (!success || (has_read == 0)) {
- LOG_ERROR("(WIN32) read from pipe failed, error code: 0x%08lx", GetLastError());
+ LOG_ERROR("(WIN32) read from pipe failed, error code: 0x%08l" PRIx32, GetLastError());
return -1;
}