From b420e0ef35c368d648392ad675934af99d094ca6 Mon Sep 17 00:00:00 2001 From: Eduardo Casino Date: Mon, 23 May 2022 23:06:25 +0200 Subject: Fix vbox_shfl_set_file_size() --- vboxshfl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vboxshfl.h b/vboxshfl.h index d9da724..412709a 100644 --- a/vboxshfl.h +++ b/vboxshfl.h @@ -495,7 +495,7 @@ static vboxerr vbox_shfl_set_file_size(LPVBOXCOMM vb, hgcm_client_id_t client_id vbox_hgcm_set_parameter_shflhandle(req, 1, handle); // arg 2 in uint64 "new_size" - vbox_hgcm_set_parameter_uint32(req, 2, size); + vbox_hgcm_set_parameter_uint64(req, 2, size); if ((err = vbox_hgcm_do_call_sync(vb, req)) < 0) return err; -- cgit v1.2.3