Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
239c1604
Commit
239c1604
authored
Oct 03, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Oct 03, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
itss: Use BOOL type where appropriate.
parent
3b2f85e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
chm_lib.c
dlls/itss/chm_lib.c
+3
-3
No files found.
dlls/itss/chm_lib.c
View file @
239c1604
...
...
@@ -1424,8 +1424,8 @@ int chm_enumerate_dir(struct chmFile *h,
UChar
*
cur
;
unsigned
int
lenRemain
;
/* set to
1
once we've started */
int
it_has_begun
=
0
;
/* set to
TRUE
once we've started */
BOOL
it_has_begun
=
FALSE
;
/* the current ui */
struct
chmUnitInfo
ui
;
...
...
@@ -1493,7 +1493,7 @@ int chm_enumerate_dir(struct chmFile *h,
if
(
!
it_has_begun
)
{
if
(
ui
.
length
==
0
&&
strncmpiW
(
ui
.
path
,
prefixRectified
,
prefixLen
)
==
0
)
it_has_begun
=
1
;
it_has_begun
=
TRUE
;
else
continue
;
...
...
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