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
8b0d3d9f
Commit
8b0d3d9f
authored
Jun 13, 2012
by
Matteo Bruni
Committed by
Alexandre Julliard
Jun 13, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wpp: Invert 'type' callback parameter value, to match comment.
parent
c722f2d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
compiler.c
dlls/d3dcompiler_43/compiler.c
+1
-1
preproc.c
libs/wpp/preproc.c
+1
-1
No files found.
dlls/d3dcompiler_43/compiler.c
View file @
8b0d3d9f
...
...
@@ -193,7 +193,7 @@ static void *wpp_open_mem(const char *filename, int type)
return
NULL
;
}
hr
=
ID3DInclude_Open
(
current_include
,
type
?
D3D_INCLUDE_
SYSTEM
:
D3D_INCLUDE_LOCAL
,
type
?
D3D_INCLUDE_
LOCAL
:
D3D_INCLUDE_SYSTEM
,
filename
,
parent_include
,
(
LPCVOID
*
)
&
desc
->
buffer
,
&
desc
->
size
);
if
(
FAILED
(
hr
))
...
...
libs/wpp/preproc.c
View file @
8b0d3d9f
...
...
@@ -517,7 +517,7 @@ void *pp_open_include(const char *name, const char *parent_name, char **newpath)
if
(
!
(
path
=
wpp_callbacks
->
lookup
(
name
,
parent_name
,
includepath
,
nincludepath
)))
return
NULL
;
fp
=
wpp_callbacks
->
open
(
path
,
parent_name
==
NULL
?
1
:
0
);
fp
=
wpp_callbacks
->
open
(
path
,
!!
parent_name
);
if
(
fp
)
{
...
...
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