diff options
Diffstat (limited to 'qga/commands-win32.c')
-rw-r--r-- | qga/commands-win32.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qga/commands-win32.c b/qga/commands-win32.c index fbddc8b1b2..13679a1cdc 100644 --- a/qga/commands-win32.c +++ b/qga/commands-win32.c @@ -493,9 +493,11 @@ static void guest_fsfreeze_cleanup(void) * Walk list of mounted file systems in the guest, and discard unused * areas. */ -void qmp_guest_fstrim(bool has_minimum, int64_t minimum, Error **errp) +GuestFilesystemTrimResponse * +qmp_guest_fstrim(bool has_minimum, int64_t minimum, Error **errp) { error_setg(errp, QERR_UNSUPPORTED); + return NULL; } typedef enum { |