Skip to content

Commit 798becb

Browse files
committed
Fix one more regression
1 parent 968e4c0 commit 798becb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hal/sim.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ void do_boot(const uint32_t *app_offset)
378378

379379
wret = write(fd, app_offset, app_size);
380380
if (wret != app_size) {
381-
wolfBoot_printf( "can't write test-app to memfd, address %p: fd %d rval %ld errno %d\n", app_offset, fd, wret, errno);
381+
wolfBoot_printf( "can't write test-app to memfd, address %p: fd %d rval %d errno %d\n", app_offset, fd, wret, errno);
382382
exit(-1);
383383
}
384384
wolfBoot_printf("Stored test-app to memfd, address %p (%zu bytes)\n", app_offset, wret);

0 commit comments

Comments
 (0)