Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
239c1604
Commit
239c1604
authored
11 years ago
by
Frédéric Delanoy
Committed by
Alexandre Julliard
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
itss: Use BOOL type where appropriate.
parent
3b2f85e0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/itss/chm_lib.c
+3
-3
3 additions, 3 deletions
dlls/itss/chm_lib.c
with
3 additions
and
3 deletions
dlls/itss/chm_lib.c
+
3
−
3
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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment