Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
a69418c5
Commit
a69418c5
authored
Jan 12, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Jan 14, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Remove unneeded casts.
parent
4e3671f7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
dir.c
dlls/msvcrt/dir.c
+4
-4
thread.c
dlls/msvcrt/thread.c
+2
-2
No files found.
dlls/msvcrt/dir.c
View file @
a69418c5
...
...
@@ -601,10 +601,10 @@ unsigned int CDECL MSVCRT__getdiskfree(unsigned int disk, struct MSVCRT__diskfre
if
(
GetDiskFreeSpaceW
(
disk
==
0
?
NULL
:
drivespec
,
ret
,
ret
+
1
,
ret
+
2
,
ret
+
3
))
{
d
->
sectors_per_cluster
=
(
unsigned
)
ret
[
0
];
d
->
bytes_per_sector
=
(
unsigned
)
ret
[
1
];
d
->
avail_clusters
=
(
unsigned
)
ret
[
2
];
d
->
total_clusters
=
(
unsigned
)
ret
[
3
];
d
->
sectors_per_cluster
=
ret
[
0
];
d
->
bytes_per_sector
=
ret
[
1
];
d
->
avail_clusters
=
ret
[
2
];
d
->
total_clusters
=
ret
[
3
];
return
0
;
}
err
=
GetLastError
();
...
...
dlls/msvcrt/thread.c
View file @
a69418c5
...
...
@@ -108,8 +108,8 @@ MSVCRT_uintptr_t CDECL _beginthreadex(
/* FIXME */
return
(
MSVCRT_uintptr_t
)
CreateThread
(
security
,
stack_size
,
(
LPTHREAD_START_ROUTINE
)
start_address
,
arglist
,
initflag
,
(
LPDWORD
)
thrdaddr
);
start_address
,
arglist
,
initflag
,
thrdaddr
);
}
/*********************************************************************
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment