mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-08 05:38:19 +00:00
Change size_t to unsigned long
This commit is contained in:
@@ -1322,8 +1322,8 @@ mod tests {
|
|||||||
|
|
||||||
long CustomWasiStdin_destructor(
|
long CustomWasiStdin_destructor(
|
||||||
const void* env,
|
const void* env,
|
||||||
size_t sz,
|
unsigned long sz,
|
||||||
size_t ao
|
unsigned long ao
|
||||||
) {
|
) {
|
||||||
(void)env;
|
(void)env;
|
||||||
(void)sz;
|
(void)sz;
|
||||||
@@ -1333,9 +1333,9 @@ mod tests {
|
|||||||
|
|
||||||
long CustomWasiStdin_onStdIn(
|
long CustomWasiStdin_onStdIn(
|
||||||
const void* env,
|
const void* env,
|
||||||
size_t sz,
|
unsigned long sz,
|
||||||
size_t ao,
|
unsigned long ao,
|
||||||
size_t maxwrite,
|
unsigned long maxwrite,
|
||||||
wasi_console_stdin_response_t* in
|
wasi_console_stdin_response_t* in
|
||||||
) {
|
) {
|
||||||
CustomWasiStdin* ptr = (CustomWasiStdin*)env;
|
CustomWasiStdin* ptr = (CustomWasiStdin*)env;
|
||||||
|
|||||||
Reference in New Issue
Block a user