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
d40517cb
Commit
d40517cb
authored
May 09, 2005
by
Michael Stefaniuc
Committed by
Alexandre Julliard
May 09, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change the type of 1 bit wide bitfields to unsigned.
parent
3a117bcc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
token.c
server/token.c
+2
-2
wrctypes.h
tools/wrc/wrctypes.h
+7
-7
No files found.
server/token.c
View file @
d40517cb
...
@@ -65,8 +65,8 @@ struct privilege
...
@@ -65,8 +65,8 @@ struct privilege
{
{
struct
list
entry
;
struct
list
entry
;
LUID
luid
;
LUID
luid
;
int
enabled
:
1
;
/* is the privilege currently enabled? */
unsigned
enabled
:
1
;
/* is the privilege currently enabled? */
int
def
:
1
;
/* is the privilege enabled by default? */
unsigned
def
:
1
;
/* is the privilege enabled by default? */
};
};
static
void
token_dump
(
struct
object
*
obj
,
int
verbose
);
static
void
token_dump
(
struct
object
*
obj
,
int
verbose
);
...
...
tools/wrc/wrctypes.h
View file @
d40517cb
...
@@ -535,13 +535,13 @@ typedef struct versioninfo {
...
@@ -535,13 +535,13 @@ typedef struct versioninfo {
int
filetype
;
int
filetype
;
int
filesubtype
;
int
filesubtype
;
struct
{
struct
{
int
fv
:
1
;
unsigned
fv
:
1
;
int
pv
:
1
;
unsigned
pv
:
1
;
int
fo
:
1
;
unsigned
fo
:
1
;
int
ff
:
1
;
unsigned
ff
:
1
;
int
ffm
:
1
;
unsigned
ffm
:
1
;
int
ft
:
1
;
unsigned
ft
:
1
;
int
fst
:
1
;
unsigned
fst
:
1
;
}
gotit
;
}
gotit
;
ver_block_t
*
blocks
;
ver_block_t
*
blocks
;
lvc_t
lvc
;
lvc_t
lvc
;
...
...
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