mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-09-13 09:17:20 -07:00
setupapi-DiskSpaceList: Fix compile warning on x86_64.
This commit is contained in:
parent
04bb547a4b
commit
5cc96d631e
@ -1,4 +1,4 @@
|
||||
From 675e85075039dca812bdfeb5e353d45d9da6cac3 Mon Sep 17 00:00:00 2001
|
||||
From cdef6edd147384d61717cd37a83c7864db4e53dc Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Michael=20M=C3=BCller?= <michael@fds-team.de>
|
||||
Date: Thu, 3 Mar 2016 05:02:21 +0100
|
||||
Subject: setupapi: Implement SetupAddToDiskSpaceList.
|
||||
@ -9,7 +9,7 @@ Subject: setupapi: Implement SetupAddToDiskSpaceList.
|
||||
2 files changed, 285 insertions(+), 11 deletions(-)
|
||||
|
||||
diff --git a/dlls/setupapi/diskspace.c b/dlls/setupapi/diskspace.c
|
||||
index 7c33542..0e589fa 100644
|
||||
index 7c33542..f945b99 100644
|
||||
--- a/dlls/setupapi/diskspace.c
|
||||
+++ b/dlls/setupapi/diskspace.c
|
||||
@@ -49,7 +49,21 @@ struct space_list
|
||||
@ -55,8 +55,8 @@ index 7c33542..0e589fa 100644
|
||||
+ BOOL ret = FALSE;
|
||||
+ DWORD size;
|
||||
+
|
||||
+ TRACE("(%p, %s, %llu, %u, %p, %u)\n", diskspace, debugstr_w(targetfile), filesize,
|
||||
+ operation, reserved1, reserved2);
|
||||
+ TRACE("(%p, %s, %s, %u, %p, %u)\n", diskspace, debugstr_w(targetfile),
|
||||
+ wine_dbgstr_longlong(filesize), operation, reserved1, reserved2);
|
||||
+
|
||||
+ if (!targetfile)
|
||||
+ return TRUE;
|
||||
|
Loading…
Reference in New Issue
Block a user